| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | CompilerDecl.cpp | 16 bool CompilerDecl::IsClang() const { in IsClang() 20 ConstString CompilerDecl::GetName() const { in GetName() 24 ConstString CompilerDecl::GetMangledName() const { in GetMangledName() 28 CompilerDeclContext CompilerDecl::GetDeclContext() const { in GetDeclContext() 32 CompilerType CompilerDecl::GetFunctionReturnType() const { in GetFunctionReturnType() 36 size_t CompilerDecl::GetNumFunctionArguments() const { in GetNumFunctionArguments() 40 CompilerType CompilerDecl::GetFunctionArgumentType(size_t arg_idx) const { in GetFunctionArgumentType() 44 bool lldb_private::operator==(const lldb_private::CompilerDecl &lhs, in operator ==() 45 const lldb_private::CompilerDecl &rhs) { in operator ==() 50 bool lldb_private::operator!=(const lldb_private::CompilerDecl &lhs, in operator !=() [all …]
|
| H A D | CompilerDeclContext.cpp | 17 std::vector<CompilerDecl> 24 return std::vector<CompilerDecl>(); in FindDeclByName()
|
| H A D | TypeSystem.cpp | 151 std::vector<CompilerDecl> 154 return std::vector<CompilerDecl>(); in DeclContextFindDeclByName()
|
| H A D | Variable.cpp | 212 CompilerDecl Variable::GetDecl() { in GetDecl() 214 return type ? type->GetSymbolFile()->GetDeclForUID(GetID()) : CompilerDecl(); in GetDecl()
|
| H A D | ClangASTContext.cpp | 4696 CompilerDecl clang_decl; in GetMemberFunctionAtIndex() 4728 clang_decl = CompilerDecl(this, cxx_method_decl); in GetMemberFunctionAtIndex() 4754 clang_decl = CompilerDecl(this, objc_method_decl); in GetMemberFunctionAtIndex() 4784 clang_decl = CompilerDecl(this, objc_method_decl); in GetMemberFunctionAtIndex() 10009 std::vector<CompilerDecl> ClangASTContext::DeclContextFindDeclByName( in DeclContextFindDeclByName() 10011 std::vector<CompilerDecl> found_decls; in DeclContextFindDeclByName() 10050 found_decls.push_back(CompilerDecl(this, nd)); in DeclContextFindDeclByName() 10057 found_decls.push_back(CompilerDecl(this, nd)); in DeclContextFindDeclByName()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | CompilerDecl.h | 19 class CompilerDecl { 24 CompilerDecl() : m_type_system(nullptr), m_opaque_decl(nullptr) {} in CompilerDecl() function 26 CompilerDecl(TypeSystem *type_system, void *decl) in CompilerDecl() function 29 ~CompilerDecl() {} in ~CompilerDecl() 37 bool operator<(const CompilerDecl &rhs) const { 89 bool operator==(const CompilerDecl &lhs, const CompilerDecl &rhs); 90 bool operator!=(const CompilerDecl &lhs, const CompilerDecl &rhs);
|
| H A D | SymbolFile.h | 162 virtual CompilerDecl GetDeclForUID(lldb::user_id_t uid) { in GetDeclForUID() 163 return CompilerDecl(); in GetDeclForUID()
|
| H A D | CompilerDeclContext.h | 50 std::vector<CompilerDecl> FindDeclByName(ConstString name,
|
| H A D | Variable.h | 111 CompilerDecl GetDecl();
|
| H A D | Type.h | 581 TypeMemberFunctionImpl(const CompilerType &type, const CompilerDecl &decl, in TypeMemberFunctionImpl() 609 CompilerDecl m_decl;
|
| H A D | TypeSystem.h | 121 virtual std::vector<CompilerDecl>
|
| H A D | ClangASTContext.h | 499 std::vector<CompilerDecl>
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParser.h | 43 virtual lldb_private::CompilerDecl
|
| H A D | DWARFDIE.cpp | 285 CompilerDecl DWARFDIE::GetDecl() const { in GetDecl() 290 return CompilerDecl(); in GetDecl()
|
| H A D | DWARFDIE.h | 118 lldb_private::CompilerDecl GetDecl() const;
|
| H A D | DWARFASTParserClang.h | 51 lldb_private::CompilerDecl
|
| H A D | SymbolFileDWARF.h | 150 lldb_private::CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
|
| H A D | DWARFASTParserClang.cpp | 2425 CompilerDecl DWARFASTParserClang::GetDeclForUIDFromDWARF(const DWARFDIE &die) { in GetDeclForUIDFromDWARF() 2428 return CompilerDecl(&m_ast, clang_decl); in GetDeclForUIDFromDWARF() 2429 return CompilerDecl(); in GetDeclForUIDFromDWARF() 3621 CompilerDecl imported_decl = imported_uid.GetDecl(); in GetClangDeclForDIE()
|
| H A D | SymbolFileDWARF.cpp | 1352 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() 1362 return CompilerDecl(); in GetDeclForUID()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbAstBuilder.h | 81 CompilerDecl ToCompilerDecl(clang::Decl &decl);
|
| H A D | SymbolFileNativePDB.h | 113 CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 598 lldb_private::CompilerDecl SymbolFilePDB::GetDeclForUID(lldb::user_id_t uid) { in GetDeclForUID() 602 return CompilerDecl(); in GetDeclForUID() 606 return CompilerDecl(); in GetDeclForUID() 610 return CompilerDecl(); in GetDeclForUID() 614 return CompilerDecl(); in GetDeclForUID() 616 return CompilerDecl(clang_ast_ctx, decl); in GetDeclForUID()
|
| H A D | SymbolFilePDB.h | 92 lldb_private::CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-forward.h | 69 class CompilerDecl; variable
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1218 std::vector<CompilerDecl> found_decls = in FindExternalVisibleDecls() 1223 for (CompilerDecl decl : found_decls) { in FindExternalVisibleDecls()
|