LLDB mainline
ClangDeclVendor.cpp
Go to the documentation of this file.
1//===-- ClangDeclVendor.cpp -----------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
12
14
15using namespace lldb_private;
16
17uint32_t ClangDeclVendor::FindDecls(ConstString name, bool append,
18 uint32_t max_matches,
19 std::vector<clang::NamedDecl *> &decls) {
20 if (!append)
21 decls.clear();
22
23 std::vector<CompilerDecl> compiler_decls;
24 uint32_t ret = FindDecls(name, /*append*/ false, max_matches, compiler_decls);
25 for (CompilerDecl compiler_decl : compiler_decls) {
26 clang::Decl *d = ClangUtil::GetDecl(compiler_decl);
27 clang::NamedDecl *nd = llvm::cast<clang::NamedDecl>(d);
28 decls.push_back(nd);
29 }
30 return ret;
31}
uint32_t FindDecls(ConstString name, bool append, uint32_t max_matches, std::vector< clang::NamedDecl * > &decls)
Represents a generic declaration such as a function declaration.
Definition: CompilerDecl.h:28
A uniqued constant string class.
Definition: ConstString.h:40
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
static clang::Decl * GetDecl(const CompilerDecl &decl)
Returns the clang::Decl of the given CompilerDecl.
Definition: ClangUtil.cpp:31