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

Declarations

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

References

tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  346     if (auto record = FuncRecord::parse(line))
  676     if (auto record = FuncRecord::parse(*It)) {
tools/lldb/unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp
   67             FuncRecord::parse("FUNC m 47 7 8 foo"));
   69             FuncRecord::parse("FUNC 47 7 8 foo"));
   71   EXPECT_EQ(llvm::None, FuncRecord::parse("PUBLIC 47 7 8 foo"));
   72   EXPECT_EQ(llvm::None, FuncRecord::parse("FUNC 47 7 8"));
   73   EXPECT_EQ(llvm::None, FuncRecord::parse("FUNC 47 7"));
   74   EXPECT_EQ(llvm::None, FuncRecord::parse("FUNC 47"));
   75   EXPECT_EQ(llvm::None, FuncRecord::parse("FUNC m"));
   76   EXPECT_EQ(llvm::None, FuncRecord::parse("FUNC"));