Home
last modified time | relevance | path

Searched refs:getStringForID (Results 1 – 9 of 9) sorted by relevance

/llvm-project/llvm/unittests/DebugInfo/PDB/
H A DStringTableBuilderTest.cpp63 EXPECT_THAT_EXPECTED(Table.getStringForID(FooID), HasValue("foo")); in TEST()
64 EXPECT_THAT_EXPECTED(Table.getStringForID(BarID), HasValue("bar")); in TEST()
65 EXPECT_THAT_EXPECTED(Table.getStringForID(BazID), HasValue("baz")); in TEST()
66 EXPECT_THAT_EXPECTED(Table.getStringForID(BuzzID), HasValue("buzz")); in TEST()
67 EXPECT_THAT_EXPECTED(Table.getStringForID(BazzID), HasValue("bazz")); in TEST()
68 EXPECT_THAT_EXPECTED(Table.getStringForID(BarrID), HasValue("barr")); in TEST()
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInjectedSourceStream.cpp51 auto Name = Strings.getStringForID(Entry.second.FileNI); in reload()
54 auto ObjName = Strings.getStringForID(Entry.second.ObjNI); in reload()
57 auto VName = Strings.getStringForID(Entry.second.VFileNI); in reload()
H A DNativeEnumInjectedSources.cpp51 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI), in getFileName()
57 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI), in getObjectFileName()
63 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI), in getVirtualFileName()
73 cantFail(Strings.getStringForID(Entry.VFileNI), in getCode()
H A DPDBStringTable.cpp108 Expected<StringRef> PDBStringTable::getStringForID(uint32_t ID) const { in getStringForID() function in PDBStringTable
127 auto ExpectedStr = getStringForID(ID); in getIDForString()
H A DDbiStream.cpp235 return ECNames.getStringForID(NI); in getECName()
/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBStringTable.h35 Expected<StringRef> getStringForID(uint32_t ID) const;
/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp117 auto S = ST.getStringForID(ID); in dumpStringTable()
H A DDumpOutputStyle.cpp1029 auto Program = Err(StringTable.getStringForID(FD.FrameFunc)); in dumpNewFpo()
1083 auto ES = IS->getStringForID(I); in dumpStringTableFromPdb()
1412 auto ExpectedStr = Strings.getStringForID(A.first); in dumpTpiStream()
/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp711 out_program = cantFail(strings->getStringForID(frame_data_it->FrameFunc)); in GetFrameDataProgram()