Home
last modified time | relevance | path

Searched refs:getCStr (Results 1 – 8 of 8) sorted by relevance

/external/llvm/unittests/Support/
DDataExtractorTest.cpp95 EXPECT_EQ(stringData, DE.getCStr(&offset)); in TEST()
97 EXPECT_EQ(NULL, DE.getCStr(&offset)); in TEST()
/external/llvm/lib/DebugInfo/
DDWARFFormValue.cpp165 Value.cstr = data.getCStr(offset_ptr); in extractValue()
247 debug_info_data.getCStr(offset_ptr); in skipValue()
447 return debug_str_data_ptr->getCStr(&offset); in getAsCString()
459 return DS->getCStr(&soffset); in getIndirectCString()
DDWARFDebugLine.cpp191 const char *s = debug_line_data.getCStr(offset_ptr); in parsePrologue()
199 const char *name = debug_line_data.getCStr(offset_ptr); in parsePrologue()
306 fileEntry.Name = debug_line_data.getCStr(offset_ptr); in parseStatementTable()
DDWARFContext.cpp71 while (const char *s = strData.getCStr(&offset)) { in dump()
105 OS << pubNames.getCStr(&offset) << "\n"; in dump()
125 while (const char *s = strDWOData.getCStr(&offset)) { in dump()
DDWARFDebugInfoEntry.cpp151 debug_info_data.getCStr(&offset); in extractFast()
287 debug_info_data.getCStr(&offset); in extract()
DDWARFDebugFrame.cpp346 const char *Augmentation = Data.getCStr(&Offset); in parse()
/external/llvm/include/llvm/Support/
DDataExtractor.h60 const char *getCStr(uint32_t *offset_ptr) const;
/external/llvm/lib/Support/
DDataExtractor.cpp121 const char *DataExtractor::getCStr(uint32_t *offset_ptr) const { in getCStr() function in DataExtractor