Home
last modified time | relevance | path

Searched refs:FileRecord (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/ObjectFile/Breakpad/
H A DBreakpadRecordsTest.cpp60 TEST(FileRecord, parse) { in TEST() argument
61 EXPECT_EQ(FileRecord(47, "foo"), FileRecord::parse("FILE 47 foo")); in TEST()
62 EXPECT_EQ(llvm::None, FileRecord::parse("FILE 47")); in TEST()
63 EXPECT_EQ(llvm::None, FileRecord::parse("FILE")); in TEST()
64 EXPECT_EQ(llvm::None, FileRecord::parse("")); in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h88 class FileRecord : public Record {
90 static llvm::Optional<FileRecord> parse(llvm::StringRef Line);
91 FileRecord(size_t Number, llvm::StringRef Name) in FileRecord() function
98 inline bool operator==(const FileRecord &L, const FileRecord &R) {
101 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const FileRecord &R);
H A DBreakpadRecords.cpp246 llvm::Optional<FileRecord> FileRecord::parse(llvm::StringRef Line) { in parse()
248 return parseNumberName<FileRecord>(Line, Token::File); in parse()
252 const FileRecord &R) { in operator <<()
/llvm-project-15.0.7/llvm/test/ExecutionEngine/JITLink/X86/
H A DCOFF_file_debug.s8 # CHECK: 7: Skipping FileRecord symbol ".file" in (debug) (index: -2)
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp799 auto record = FileRecord::parse(line); in ParseFileRecords()