Home
last modified time | relevance | path

Searched refs:findAllChildren (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h121 auto Enumerator(findAllChildren<T>()); in findOneChild()
128 std::unique_ptr<ConcreteSymbolEnumerator<T>> findAllChildren() const { in findAllChildren() function
134 std::unique_ptr<IPDBEnumSymbols> findAllChildren(PDB_SymType Type) const;
135 std::unique_ptr<IPDBEnumSymbols> findAllChildren() const;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp142 std::unique_ptr<IPDBEnumSymbols> PDBSymbol::findAllChildren() const { in findAllChildren() function in PDBSymbol
143 return findAllChildren(PDB_SymType::None); in findAllChildren()
147 PDBSymbol::findAllChildren(PDB_SymType Type) const { in findAllChildren() function in PDBSymbol
187 std::unique_ptr<IPDBEnumSymbols> Result(findAllChildren()); in getChildStats()
H A DPDBSymbolTypeFunctionSig.cpp32 Enumerator(Sig.findAllChildren<PDBSymbolTypeFunctionArg>()) {} in FunctionArgEnumerator()
H A DPDBSymbolFunc.cpp39 auto DataChildren = Func.findAllChildren<PDBSymbolData>(); in FunctionArgEnumerator()
H A DPDBSymbolCompiland.cpp46 if (auto Envs = findAllChildren<PDBSymbolCompilandEnv>()) { in getSourceFileFullPath()
H A DUDTLayout.cpp178 auto Children = Sym.findAllChildren(); in initializeChildren()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp212 auto compilands = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in CalculateNumCompileUnits()
239 auto results_up = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in GetCompileUnitIndex()
267 auto results = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in ParseCompileUnitAtIndex()
342 auto results_up = compiland_up->findAllChildren<PDBSymbolFunc>(); in ParseFunctions()
434 auto results_up = pdb_symbol->findAllChildren(); in ParseFunctionBlocksForPDBSymbol()
474 results = raw_sym.findAllChildren(tag); in ParseTypes()
536 auto results = m_global_scope_up->findAllChildren<PDBSymbolData>(); in ParseVariablesForContext()
921 m_global_scope_up->findAllChildren(PDB_SymType::PublicSymbol)) in GetMangledForPDBData()
1112 if (auto results = pdb_symbol.findAllChildren()) { in ParseVariables()
1129 auto results = m_global_scope_up->findAllChildren<PDBSymbolData>(); in FindGlobalVariables()
[all …]
H A DPDBASTParser.cpp263 auto bases_enum = udt.findAllChildren<PDBSymbolTypeBaseClass>(); in GetMSInheritance()
437 auto children = udt->findAllChildren(); in CreateLLDBTypeFromPDBType()
516 auto enum_values = enum_type->findAllChildren<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
876 class_parent->findAllChildren<PDBSymbolFunc>()) { in GetDeclForSymbol()
963 arg_enum = sig->findAllChildren<PDBSymbolTypeFunctionArg>()) { in GetDeclForSymbol()
1121 if (auto children = symbol->findAllChildren()) in ParseDeclsForDeclContext()
1207 auto nested_enums = udt.findAllChildren<PDBSymbolTypeUDT>(); in CompleteTypeFromUDT()
1212 auto bases_enum = udt.findAllChildren<PDBSymbolTypeBaseClass>(); in CompleteTypeFromUDT()
1218 auto members_enum = udt.findAllChildren<PDBSymbolData>(); in CompleteTypeFromUDT()
1222 auto methods_enum = udt.findAllChildren<PDBSymbolFunc>(); in CompleteTypeFromUDT()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyExternalSymbolDumper.cpp24 if (auto Vars = Symbol.findAllChildren<PDBSymbolPublicSymbol>()) { in start()
H A DPrettyEnumDumper.cpp50 auto EnumValues = Symbol.findAllChildren<PDBSymbolData>(); in start()
H A DPrettyTypeDumper.cpp165 if (auto Children = Exe.findAllChildren<SymbolT>()) { in dumpSymbolCategory()
217 if (auto Classes = Exe.findAllChildren<PDBSymbolTypeUDT>()) { in start()
H A Dllvm-pdbutil.cpp1025 auto Children = ConcreteOuter->template findAllChildren<ChildT>(); in diaDumpChildren()
1070 auto Children = GlobalScope->findAllChildren(ST); in dumpDia()
1212 auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>(); in dumpPretty()
1240 if (auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>()) { in dumpPretty()
1254 if (auto Functions = GlobalScope->findAllChildren<PDBSymbolFunc>()) { in dumpPretty()
1274 if (auto Vars = GlobalScope->findAllChildren<PDBSymbolData>()) { in dumpPretty()
1290 if (auto Thunks = GlobalScope->findAllChildren<PDBSymbolThunk>()) { in dumpPretty()
H A DPrettyCompilandDumper.cpp119 if (auto ChildrenEnum = Symbol.findAllChildren()) { in start()