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

Declarations

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

References

tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
   40   auto Info = InfoRecord::parse(line);
tools/lldb/unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp
   51             InfoRecord::parse("INFO CODE_ID 404142434445464748494a4b4c4d4e4f"));
   52   EXPECT_EQ(InfoRecord(UUID()), InfoRecord::parse("INFO CODE_ID 47 a.exe"));
   54   EXPECT_EQ(llvm::None, InfoRecord::parse("INFO"));
   55   EXPECT_EQ(llvm::None, InfoRecord::parse("INFO CODE_ID"));