| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerDeclContext.cpp | 17 CompilerDeclContext::FindDeclByName(ConstString name, in FindDeclByName() 25 ConstString CompilerDeclContext::GetName() const { in GetName() 31 ConstString CompilerDeclContext::GetScopeQualifiedName() const { in GetScopeQualifiedName() 37 bool CompilerDeclContext::IsClassMethod() { in IsClassMethod() 43 lldb::LanguageType CompilerDeclContext::GetLanguage() { in GetLanguage() 49 bool CompilerDeclContext::IsContainedInLookup(CompilerDeclContext other) const { in IsContainedInLookup() 63 CompilerDeclContext::GetCompilerContext() const { in GetCompilerContext() 69 bool lldb_private::operator==(const lldb_private::CompilerDeclContext &lhs, in operator ==() 70 const lldb_private::CompilerDeclContext &rhs) { in operator ==() 75 bool lldb_private::operator!=(const lldb_private::CompilerDeclContext &lhs, in operator !=() [all …]
|
| H A D | SymbolFileOnDemand.cpp | 237 CompilerDeclContext 242 return CompilerDeclContext(); in GetDeclContextForUID() 247 CompilerDeclContext 252 return CompilerDeclContext(); in GetDeclContextContainingUID() 257 void SymbolFileOnDemand::ParseDeclsForContext(CompilerDeclContext decl_ctx) { in ParseDeclsForContext() 329 ConstString name, const CompilerDeclContext &parent_decl_ctx, in FindGlobalVariables() 389 const CompilerDeclContext &parent_decl_ctx, bool include_inlines, in FindFunctions() 467 CompilerDeclContext 469 const CompilerDeclContext &parent_decl_ctx, in FindNamespace()
|
| H A D | TypeSystem.cpp | 108 const CompilerDeclContext &decl_ctx, in CreateTypedef() 159 CompilerDeclContext TypeSystem::DeclGetDeclContext(void *opaque_decl) { in DeclGetDeclContext() 160 return CompilerDeclContext(); in DeclGetDeclContext() 199 CompilerDeclContext 201 return CompilerDeclContext(); in GetCompilerDeclContextForType()
|
| H A D | SymbolFile.cpp | 116 const CompilerDeclContext &parent_decl_ctx, in FindGlobalVariables() 125 const CompilerDeclContext &parent_decl_ctx, in FindFunctions()
|
| H A D | CompilerDecl.cpp | 23 CompilerDeclContext CompilerDecl::GetDeclContext() const { in GetDeclContext()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerDeclContext.h | 31 class CompilerDeclContext { 34 CompilerDeclContext() = default; 43 CompilerDeclContext(TypeSystem *type_system, void *decl_ctx) in CompilerDeclContext() function 50 bool operator<(const CompilerDeclContext &rhs) const { 91 bool IsContainedInLookup(CompilerDeclContext other) const; 118 bool operator==(const CompilerDeclContext &lhs, const CompilerDeclContext &rhs); 119 bool operator!=(const CompilerDeclContext &lhs, const CompilerDeclContext &rhs);
|
| H A D | SymbolFileOnDemand.h | 108 lldb_private::CompilerDeclContext 111 lldb_private::CompilerDeclContext 115 ParseDeclsForContext(lldb_private::CompilerDeclContext decl_ctx) override; 134 const lldb_private::CompilerDeclContext &parent_decl_ctx, 143 const lldb_private::CompilerDeclContext &parent_decl_ctx, 165 lldb_private::CompilerDeclContext 167 const lldb_private::CompilerDeclContext &parent_decl_ctx,
|
| H A D | SymbolFile.h | 227 virtual void ParseDeclsForContext(CompilerDeclContext decl_ctx) {} in ParseDeclsForContext() 229 virtual CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) { in GetDeclContextForUID() 232 virtual CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) { in GetDeclContextContainingUID() 293 const CompilerDeclContext &parent_decl_ctx, 300 const CompilerDeclContext &parent_decl_ctx, 340 virtual CompilerDeclContext 341 FindNamespace(ConstString name, const CompilerDeclContext &parent_decl_ctx, 343 return CompilerDeclContext();
|
| H A D | CompilerDecl.h | 74 CompilerDeclContext GetDeclContext() const;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 95 lldb_private::CompilerDeclContext 98 lldb_private::CompilerDeclContext 102 ParseDeclsForContext(lldb_private::CompilerDeclContext decl_ctx) override; 115 const lldb_private::CompilerDeclContext &parent_decl_ctx, 124 const lldb_private::CompilerDeclContext &parent_decl_ctx, 149 lldb_private::CompilerDeclContext 151 const lldb_private::CompilerDeclContext &parent_decl_ctx, 185 const lldb_private::CompilerDeclContext &parent_decl_ctx, 232 const lldb_private::CompilerDeclContext &decl_ctx);
|
| H A D | SymbolFilePDB.cpp | 656 lldb_private::CompilerDeclContext 663 return CompilerDeclContext(); in GetDeclContextForUID() 670 return CompilerDeclContext(); in GetDeclContextForUID() 674 return CompilerDeclContext(); in GetDeclContextForUID() 678 return CompilerDeclContext(); in GetDeclContextForUID() 687 lldb_private::CompilerDeclContext 694 return CompilerDeclContext(); in GetDeclContextContainingUID() 701 return CompilerDeclContext(); in GetDeclContextContainingUID() 705 return CompilerDeclContext(); in GetDeclContextContainingUID() 709 return CompilerDeclContext(); in GetDeclContextContainingUID() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.h | 151 CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) override; 153 CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) override; 158 void ParseDeclsForContext(CompilerDeclContext decl_ctx) override; 171 const CompilerDeclContext &parent_decl_ctx, 179 const CompilerDeclContext &parent_decl_ctx, 198 CompilerDeclContext FindNamespace(ConstString name, 199 const CompilerDeclContext &parent_decl_ctx, 253 static bool DIEInDeclContext(const CompilerDeclContext &parent_decl_ctx, 282 static CompilerDeclContext GetDeclContext(const DWARFDIE &die); 284 static CompilerDeclContext GetContainingDeclContext(const DWARFDIE &die); [all …]
|
| H A D | SymbolFileDWARFDebugMap.h | 94 CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) override; 95 CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) override; 98 void ParseDeclsForContext(CompilerDeclContext decl_ctx) override; 111 const CompilerDeclContext &parent_decl_ctx, 117 const CompilerDeclContext &parent_decl_ctx, 123 CompilerDeclContext FindNamespace(ConstString name, 124 const CompilerDeclContext &parent_decl_ctx, 263 const CompilerDeclContext &parent_decl_ctx,
|
| H A D | DWARFASTParser.h | 52 virtual CompilerDeclContext 55 virtual CompilerDeclContext 59 CompilerDeclContext decl_context) = 0;
|
| H A D | DWARFIndex.h | 69 const CompilerDeclContext &parent_decl_ctx, 89 const CompilerDeclContext &parent_decl_ctx,
|
| H A D | SymbolFileDWARFDebugMap.cpp | 891 ConstString name, const CompilerDeclContext &parent_decl_ctx, in PrivateFindGlobalVariables() 913 ConstString name, const CompilerDeclContext &parent_decl_ctx, in FindGlobalVariables() 1068 const CompilerDeclContext &parent_decl_ctx, bool include_inlines, in FindFunctions() 1240 CompilerDeclContext SymbolFileDWARFDebugMap::FindNamespace( in FindNamespace() 1241 lldb_private::ConstString name, const CompilerDeclContext &parent_decl_ctx, in FindNamespace() 1244 CompilerDeclContext matching_namespace; in FindNamespace() 1366 CompilerDeclContext 1374 CompilerDeclContext 1391 lldb_private::CompilerDeclContext decl_ctx) { in ParseDeclsForContext()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.h | 283 const CompilerDeclContext &namespace_decl); 452 const CompilerDeclContext &namespace_decl); 469 const CompilerDeclContext &frame_decl_context); 486 const CompilerDeclContext &namespace_decl); 506 const CompilerDeclContext &namespace_decl);
|
| H A D | ClangASTSource.cpp | 537 CompilerDeclContext namespace_decl; in FindExternalVisibleDecls() 580 CompilerDeclContext &namespace_decl) { in FindExternalVisibleDecls() 648 const CompilerDeclContext &namespace_decl) { in FillNamespaceMap() 656 CompilerDeclContext found_namespace_decl; in FillNamespaceMap() 663 std::pair<lldb::ModuleSP, CompilerDeclContext>( in FillNamespaceMap() 677 CompilerDeclContext found_namespace_decl; in FillNamespaceMap() 699 std::pair<lldb::ModuleSP, CompilerDeclContext>(image, in FillNamespaceMap() 1623 CompilerDeclContext found_namespace_decl; in CompleteNamespaceMap() 1626 CompilerDeclContext module_parent_namespace_decl = i->second; in CompleteNamespaceMap() 1646 CompilerDeclContext null_namespace_decl; in CompleteNamespaceMap() [all …]
|
| H A D | ClangExpressionDeclMap.cpp | 631 const CompilerDeclContext &namespace_decl) { in FindGlobalVariable() 695 CompilerDeclContext compiler_decl_ctx = in FindExternalVisibleDecls() 718 CompilerDeclContext namespace_decl; in FindExternalVisibleDecls() 1061 const CompilerDeclContext &namespace_decl) { in LookupLocalVariable() 1065 CompilerDeclContext decl_context = sym_ctx.block->GetDeclContext(); in LookupLocalVariable() 1140 const CompilerDeclContext &frame_decl_context) { in SearchFunctionsInSymbolContexts() 1166 CompilerDeclContext func_decl_context = function->GetDeclContext(); in SearchFunctionsInSymbolContexts() 1223 const CompilerDeclContext &namespace_decl) { in LookupFunction() 1275 CompilerDeclContext frame_decl_context = in LookupFunction() 1277 : CompilerDeclContext(); in LookupFunction() [all …]
|
| H A D | ClangASTSource.h | 283 CompilerDeclContext &namespace_decl); 370 const CompilerDeclContext &namespace_decl);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 85 ParseDeclsForContext(lldb_private::CompilerDeclContext decl_ctx) override; 107 const CompilerDeclContext &parent_decl_ctx, 116 CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) override; 117 CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) override; 135 const CompilerDeclContext &parent_decl_ctx, 149 CompilerDeclContext FindNamespace(ConstString name, 150 const CompilerDeclContext &parent_decl_ctx,
|
| H A D | PdbAstBuilder.h | 58 lldb_private::CompilerDeclContext GetTranslationUnitDecl(); 83 CompilerDeclContext ToCompilerDeclContext(clang::DeclContext &context); 85 clang::DeclContext *FromCompilerDeclContext(CompilerDeclContext context);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 88 const CompilerDeclContext &parent_decl_ctx, in FindGlobalVariables() 115 const CompilerDeclContext &parent_decl_ctx, 128 CompilerDeclContext FindNamespace(ConstString name, in FindNamespace() 129 const CompilerDeclContext &parent_decl_ctx, in FindNamespace() 131 return CompilerDeclContext(); in FindNamespace()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 220 CompilerDeclContext 552 CompilerDeclContext DeclGetDeclContext(void *opaque_decl) override; 572 CompilerDeclContext CreateDeclContext(clang::DeclContext *ctx); 599 DeclContextGetAsDeclContext(const CompilerDeclContext &dc); 602 DeclContextGetAsObjCMethodDecl(const CompilerDeclContext &dc); 605 DeclContextGetAsCXXMethodDecl(const CompilerDeclContext &dc); 608 DeclContextGetAsFunctionDecl(const CompilerDeclContext &dc); 611 DeclContextGetAsNamespaceDecl(const CompilerDeclContext &dc); 613 static ClangASTMetadata *DeclContextGetMetaData(const CompilerDeclContext &dc, 617 DeclContextGetTypeSystemClang(const CompilerDeclContext &dc); [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Module.h | 46 class CompilerDeclContext; variable 312 const CompilerDeclContext &parent_decl_ctx, 335 const CompilerDeclContext &parent_decl_ctx, 406 const CompilerDeclContext &parent_decl_ctx,
|