Home
last modified time | relevance | path

Searched refs:PDBASTParser (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.h43 class PDBASTParser {
45 PDBASTParser(lldb_private::TypeSystemClang &ast);
46 ~PDBASTParser();
H A DPDBASTParser.cpp356 PDBASTParser::PDBASTParser(lldb_private::TypeSystemClang &ast) : m_ast(ast) {} in PDBASTParser() function in PDBASTParser
358 PDBASTParser::~PDBASTParser() = default;
789 bool PDBASTParser::CompleteTypeFromPDB( in CompleteTypeFromPDB()
830 PDBASTParser::GetDeclForSymbol(const llvm::pdb::PDBSymbol &symbol) { in GetDeclForSymbol()
1019 clang::DeclContext *PDBASTParser::GetDeclContextContainingSymbol( in GetDeclContextContainingSymbol()
1093 void PDBASTParser::ParseDeclsForDeclContext( in ParseDeclsForDeclContext()
1118 PDBASTParser::FindNamespaceDecl(const clang::DeclContext *parent, in FindNamespaceDecl()
1143 bool PDBASTParser::AddEnumValue(CompilerType enum_type, in AddEnumValue()
1191 bool PDBASTParser::CompleteTypeFromUDT( in CompleteTypeFromUDT()
1231 void PDBASTParser::AddRecordMembers( in AddRecordMembers()
[all …]
H A DSymbolFilePDB.h22 class PDBASTParser; variable
226 PDBASTParser *GetPDBAstParser();
H A DSymbolFilePDB.cpp569 PDBASTParser *pdb = clang_type_system->GetPDBParser(); in ResolveTypeUID()
608 PDBASTParser *pdb = clang_ast_ctx->GetPDBParser(); in CompleteType()
629 PDBASTParser *pdb = clang_ast_ctx->GetPDBParser(); in GetDeclForUID()
659 PDBASTParser *pdb = clang_ast_ctx->GetPDBParser(); in GetDeclContextForUID()
689 PDBASTParser *pdb = clang_ast_ctx->GetPDBParser(); in GetDeclContextContainingUID()
718 PDBASTParser *pdb = clang_ast_ctx->GetPDBParser(); in ParseDeclsForContext()
1086 PDBASTParser *ast = GetPDBAstParser(); in ParseVariables()
1658 PDBASTParser *SymbolFilePDB::GetPDBAstParser() { in GetPDBAstParser()
1693 PDBASTParser *pdb = clang_type_system->GetPDBParser(); in FindNamespace()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeSystem.h31 class PDBASTParser; variable
90 virtual PDBASTParser *GetPDBParser() { return nullptr; } in GetPDBParser()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h42 class PDBASTParser; variable
450 PDBASTParser *GetPDBParser() override;
1078 std::unique_ptr<PDBASTParser> m_pdb_ast_parser_up;
H A DTypeSystemClang.cpp9259 PDBASTParser *TypeSystemClang::GetPDBParser() { in GetPDBParser()
9261 m_pdb_ast_parser_up = std::make_unique<PDBASTParser>(*this); in GetPDBParser()