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.h122 auto Enumerator(findAllChildren<T>()); in findOneChild()
129 std::unique_ptr<ConcreteSymbolEnumerator<T>> findAllChildren() const { in findAllChildren() function
135 std::unique_ptr<IPDBEnumSymbols> findAllChildren(PDB_SymType Type) const;
136 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.cpp38 auto DataChildren = Func.findAllChildren<PDBSymbolData>(); in FunctionArgEnumerator()
H A DPDBSymbolCompiland.cpp45 if (auto Envs = findAllChildren<PDBSymbolCompilandEnv>()) { in getSourceFileFullPath()
H A DUDTLayout.cpp177 auto Children = Sym.findAllChildren(); in initializeChildren()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp213 auto compilands = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in CalculateNumCompileUnits()
240 auto results_up = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in GetCompileUnitIndex()
268 auto results = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in ParseCompileUnitAtIndex()
342 auto results_up = compiland_up->findAllChildren<PDBSymbolFunc>(); in ParseFunctions()
423 auto results_up = pdb_symbol->findAllChildren(); in ParseFunctionBlocksForPDBSymbol()
460 results = raw_sym.findAllChildren(tag); in ParseTypes()
522 auto results = m_global_scope_up->findAllChildren<PDBSymbolData>(); in ParseVariablesForContext()
907 m_global_scope_up->findAllChildren(PDB_SymType::PublicSymbol)) in GetMangledForPDBData()
1098 if (auto results = pdb_symbol.findAllChildren()) { in ParseVariables()
1115 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()
875 class_parent->findAllChildren<PDBSymbolFunc>()) { in GetDeclForSymbol()
962 arg_enum = sig->findAllChildren<PDBSymbolTypeFunctionArg>()) { in GetDeclForSymbol()
1120 if (auto children = symbol->findAllChildren()) in ParseDeclsForDeclContext()
1206 auto nested_enums = udt.findAllChildren<PDBSymbolTypeUDT>(); in CompleteTypeFromUDT()
1211 auto bases_enum = udt.findAllChildren<PDBSymbolTypeBaseClass>(); in CompleteTypeFromUDT()
1217 auto members_enum = udt.findAllChildren<PDBSymbolData>(); in CompleteTypeFromUDT()
1221 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.cpp1031 auto Children = ConcreteOuter->template findAllChildren<ChildT>(); in diaDumpChildren()
1076 auto Children = GlobalScope->findAllChildren(ST); in dumpDia()
1218 auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>(); in dumpPretty()
1246 if (auto Compilands = GlobalScope->findAllChildren<PDBSymbolCompiland>()) { in dumpPretty()
1260 if (auto Functions = GlobalScope->findAllChildren<PDBSymbolFunc>()) { in dumpPretty()
1280 if (auto Vars = GlobalScope->findAllChildren<PDBSymbolData>()) { in dumpPretty()
1296 if (auto Thunks = GlobalScope->findAllChildren<PDBSymbolThunk>()) { in dumpPretty()
H A DPrettyCompilandDumper.cpp119 if (auto ChildrenEnum = Symbol.findAllChildren()) { in start()