reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
129 static llvm::Optional<PublicRecord> parse(llvm::StringRef Line);
351 if (auto record = PublicRecord::parse(line))
tools/lldb/unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp90 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"));