Home
last modified time | relevance | path

Searched refs:SymbolId (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DSymbolCache.h92 Result->SymbolId = Id; in createSymbol()
134 std::unique_ptr<PDBSymbol> getSymbolById(SymIndexId SymbolId) const;
136 NativeRawSymbol &getNativeSymbolById(SymIndexId SymbolId) const;
139 ConcreteT &getNativeSymbolById(SymIndexId SymbolId) const { in getNativeSymbolById() argument
140 return static_cast<ConcreteT &>(getNativeSymbolById(SymbolId)); in getNativeSymbolById()
DNativeCompilandSymbol.h20 NativeCompilandSymbol(NativeSession &Session, SymIndexId SymbolId,
DNativeRawSymbol.h27 SymIndexId SymbolId);
234 SymIndexId SymbolId; variable
DNativeSession.h42 std::unique_ptr<PDBSymbol> getSymbolById(SymIndexId SymbolId) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DSymbolCache.cpp231 SymbolCache::getSymbolById(SymIndexId SymbolId) const { in getSymbolById()
232 assert(SymbolId < Cache.size()); in getSymbolById()
235 if (SymbolId == 0 || SymbolId >= Cache.size()) in getSymbolById()
240 NativeRawSymbol *NRS = Cache[SymbolId].get(); in getSymbolById()
247 NativeRawSymbol &SymbolCache::getNativeSymbolById(SymIndexId SymbolId) const { in getNativeSymbolById()
248 return *Cache[SymbolId]; in getNativeSymbolById()
DNativeCompilandSymbol.cpp18 SymIndexId SymbolId, in NativeCompilandSymbol() argument
20 : NativeRawSymbol(Session, PDB_SymType::Compiland, SymbolId), Module(MI) {} in NativeCompilandSymbol()
DNativeRawSymbol.cpp19 SymIndexId SymbolId) in NativeRawSymbol() argument
20 : Session(PDBSession), Tag(Tag), SymbolId(SymbolId) {} in NativeRawSymbol()
25 dumpSymbolIdField(OS, "symIndexId", SymbolId, Indent, Session, in dump()
292 SymIndexId NativeRawSymbol::getSymIndexId() const { return SymbolId; } in getSymIndexId()
DNativeExeSymbol.cpp32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId) in NativeExeSymbol() argument
33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId), in NativeExeSymbol()
DNativeSession.cpp92 NativeSession::getSymbolById(SymIndexId SymbolId) const { in getSymbolById()
93 return Cache.getSymbolById(SymbolId); in getSymbolById()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DIPDBSession.h33 getSymbolById(SymIndexId SymbolId) const = 0;
41 std::unique_ptr<T> getConcreteSymbolById(SymIndexId SymbolId) const { in getConcreteSymbolById() argument
42 return unique_dyn_cast_or_null<T>(getSymbolById(SymbolId)); in getConcreteSymbolById()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIASession.h34 std::unique_ptr<PDBSymbol> getSymbolById(SymIndexId SymbolId) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp183 DIASession::getSymbolById(SymIndexId SymbolId) const { in getSymbolById()
185 if (S_OK != Session->symbolById(SymbolId, &LocatedSymbol)) in getSymbolById()
/third_party/typescript/src/compiler/
Dtypes.ts4760 export type SymbolId = number;
4770 /* @internal */ id?: SymbolId; // Unique id (used to look up SymbolLinks)
4794 …inferredClassSymbol?: ESMap<SymbolId, TransientSymbol>; // Symbol of an inferred ES5 constructor f…
Dchecker.ts290 export function getSymbolId(symbol: Symbol): SymbolId { enumerator
3990 …lFlags, useOnlyExternalAliasing: boolean, visitedSymbolTablesMap: ESMap<SymbolId, SymbolTable[]> =…
6233 const deferredPrivatesStack: ESMap<SymbolId, Symbol>[] = [];
7695 remappedSymbolNames?: ESMap<SymbolId, string>;
11450 let propSet: ESMap<SymbolId, Symbol> | undefined;
11474 propSet = new Map<SymbolId, Symbol>();