HomeSort by relevance Sort by last modified time
    Searched refs:SymbolId (Results 1 - 20 of 20) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
NativeCompilandSymbol.cpp 18 SymIndexId SymbolId,
20 : NativeRawSymbol(Session, SymbolId), Module(MI) {}
27 return llvm::make_unique<NativeCompilandSymbol>(Session, SymbolId, Module);
NativeExeSymbol.cpp 21 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId)
22 : NativeRawSymbol(Session, SymbolId), File(Session.getPDBFile()) {}
25 return llvm::make_unique<NativeExeSymbol>(Session, SymbolId);
NativeBuiltinSymbol.cpp 25 return llvm::make_unique<NativeBuiltinSymbol>(Session, SymbolId, Type, Length);
NativeRawSymbol.cpp 17 NativeRawSymbol::NativeRawSymbol(NativeSession &PDBSession, SymIndexId SymbolId)
18 : Session(PDBSession), SymbolId(SymbolId) {}
297 uint32_t NativeRawSymbol::getSymIndexId() const { return SymbolId; }
NativeSession.cpp 181 NativeSession::getSymbolById(uint32_t SymbolId) const {
182 // If the caller has a SymbolId, it'd better be in our SymbolCache.
183 return SymbolId < SymbolCache.size()
184 ? PDBSymbol::create(*this, SymbolCache[SymbolId]->clone())
NativeEnumSymbol.cpp 33 return llvm::make_unique<NativeEnumSymbol>(Session, SymbolId, CV);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
NativeCompilandSymbol.h 21 NativeCompilandSymbol(NativeSession &Session, SymIndexId SymbolId,
NativeExeSymbol.h 21 NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId);
NativeSession.h 54 std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override;
NativeRawSymbol.h 26 NativeRawSymbol(NativeSession &PDBSession, SymIndexId SymbolId);
233 SymIndexId SymbolId;
  /external/llvm/include/llvm/DebugInfo/PDB/
IPDBSession.h 32 virtual std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const = 0;
35 std::unique_ptr<T> getConcreteSymbolById(uint32_t SymbolId) const {
36 auto Symbol(getSymbolById(SymbolId));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
IPDBSession.h 33 virtual std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const = 0;
41 std::unique_ptr<T> getConcreteSymbolById(uint32_t SymbolId) const {
42 return unique_dyn_cast_or_null<T>(getSymbolById(SymbolId));
  /external/llvm/include/llvm/DebugInfo/PDB/DIA/
DIASession.h 35 std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
RawSession.h 34 std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DIASession.h 35 std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override;
  /external/llvm/lib/DebugInfo/PDB/Raw/
RawSession.cpp 84 std::unique_ptr<PDBSymbol> RawSession::getSymbolById(uint32_t SymbolId) const {
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASession.cpp 152 std::unique_ptr<PDBSymbol> DIASession::getSymbolById(uint32_t SymbolId) const {
154 if (S_OK != Session->symbolById(SymbolId, &LocatedSymbol))
  /external/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 69 std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override {
73 getSourceFileById(uint32_t SymbolId) const override {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/
DIASession.cpp 191 std::unique_ptr<PDBSymbol> DIASession::getSymbolById(uint32_t SymbolId) const {
193 if (S_OK != Session->symbolById(SymbolId, &LocatedSymbol))
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 71 std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override {
75 getSourceFileById(uint32_t SymbolId) const override {

Completed in 756 milliseconds