reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
   79   static llvm::Optional<FileRecord> parse(llvm::StringRef Line);

References

tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  646     auto record = FileRecord::parse(line);
tools/lldb/unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp
   59   EXPECT_EQ(FileRecord(47, "foo"), FileRecord::parse("FILE 47 foo"));
   60   EXPECT_EQ(llvm::None, FileRecord::parse("FILE 47"));
   61   EXPECT_EQ(llvm::None, FileRecord::parse("FILE"));
   62   EXPECT_EQ(llvm::None, FileRecord::parse(""));