Home
last modified time | relevance | path

Searched refs:LineRecord (Results 1 – 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
HDBreakpadRecords.h110 class LineRecord : public Record {
112 static llvm::Optional<LineRecord> parse(llvm::StringRef Line);
113 LineRecord(lldb::addr_t Address, lldb::addr_t Size, uint32_t LineNum, in LineRecord() function
124 bool operator==(const LineRecord &L, const LineRecord &R);
125 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const LineRecord &R);
HDBreakpadRecords.cpp302 llvm::Optional<LineRecord> LineRecord::parse(llvm::StringRef Line) { in parse()
324 return LineRecord(Address, Size, LineNum, FileNum); in parse()
327 bool breakpad::operator==(const LineRecord &L, const LineRecord &R) { in operator ==()
332 const LineRecord &R) { in operator <<()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
HDSymbolFileBreakpad.cpp211 auto record = LineRecord::parse(*It); in ParseCompileUnitAtIndex()
715 auto record = LineRecord::parse(*It); in ParseLineTableAndSupportFiles()