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

Declarations

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

References

tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  367     auto record = StackWinRecord::parse(
  547   llvm::Optional<StackWinRecord> record = StackWinRecord::parse(*It);
  759     if (auto record = StackWinRecord::parse(*It)) {
tools/lldb/unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp
  127       StackWinRecord::parse("STACK WIN 4 47 8 1 2 3 4 5 6 1 $eip $esp ^ ="));
  129   EXPECT_EQ(llvm::None, StackWinRecord::parse(
  132             StackWinRecord::parse("STACK WIN 4 47 8 1 0 0 0 0 0 0 1"));
  133   EXPECT_EQ(llvm::None, StackWinRecord::parse(
  136             StackWinRecord::parse("STACK WIN 3 47 8 1 0 0 0 0 0 0 1"));
  137   EXPECT_EQ(llvm::None, StackWinRecord::parse(
  139   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1 0 0 0 0 0"));
  140   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1 0 0 0 0"));
  141   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1 0 0 0"));
  142   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1 0 0"));
  143   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1 0"));
  144   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1"));
  145   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8"));
  146   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47"));
  147   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4"));
  148   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN"));
  149   EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK"));
  150   EXPECT_EQ(llvm::None, StackWinRecord::parse(""));