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/ |
D | SymbolCache.h | 92 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()
|
D | NativeCompilandSymbol.h | 20 NativeCompilandSymbol(NativeSession &Session, SymIndexId SymbolId,
|
D | NativeRawSymbol.h | 27 SymIndexId SymbolId); 234 SymIndexId SymbolId; variable
|
D | NativeSession.h | 42 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/ |
D | SymbolCache.cpp | 231 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()
|
D | NativeCompilandSymbol.cpp | 18 SymIndexId SymbolId, in NativeCompilandSymbol() argument 20 : NativeRawSymbol(Session, PDB_SymType::Compiland, SymbolId), Module(MI) {} in NativeCompilandSymbol()
|
D | NativeRawSymbol.cpp | 19 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()
|
D | NativeExeSymbol.cpp | 32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId) in NativeExeSymbol() argument 33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId), in NativeExeSymbol()
|
D | NativeSession.cpp | 92 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/ |
D | IPDBSession.h | 33 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/ |
D | DIASession.h | 34 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/ |
D | DIASession.cpp | 183 DIASession::getSymbolById(SymIndexId SymbolId) const { in getSymbolById() 185 if (S_OK != Session->symbolById(SymbolId, &LocatedSymbol)) in getSymbolById()
|
/third_party/typescript/src/compiler/ |
D | types.ts | 4760 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…
|
D | checker.ts | 290 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>();
|