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

Declarations

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

References

tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  351     if (auto record = PublicRecord::parse(line))
tools/lldb/unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp
   90             PublicRecord::parse("PUBLIC m 47 8 foo"));
   92             PublicRecord::parse("PUBLIC 47 8 foo"));
   94   EXPECT_EQ(llvm::None, PublicRecord::parse("FUNC 47 8 foo"));
   95   EXPECT_EQ(llvm::None, PublicRecord::parse("PUBLIC 47 8"));
   96   EXPECT_EQ(llvm::None, PublicRecord::parse("PUBLIC 47"));
   97   EXPECT_EQ(llvm::None, PublicRecord::parse("PUBLIC m"));
   98   EXPECT_EQ(llvm::None, PublicRecord::parse("PUBLIC"));