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

Declarations

tools/lldb/include/lldb/Breakpoint/BreakpointID.h
   76   static bool StringIsBreakpointName(llvm::StringRef str, Status &error);

References

tools/lldb/source/Breakpoint/BreakpointIDList.cpp
  140     } else if (BreakpointID::StringIsBreakpointName(current_arg, error)) {
tools/lldb/source/Breakpoint/BreakpointList.cpp
  137   if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(name), error))
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  415         if (BreakpointID::StringIsBreakpointName(option_arg, error))
 1528       if (BreakpointID::StringIsBreakpointName(option_arg, error) &&
 1689       if (!BreakpointID::StringIsBreakpointName(entry.ref(), error))
 2043         if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(option_arg),
tools/lldb/source/Target/Target.cpp
  686   BreakpointID::StringIsBreakpointName(name.GetStringRef(), error);
tools/lldb/unittests/Breakpoint/BreakpointIDTest.cpp
   21   EXPECT_FALSE(BreakpointID::StringIsBreakpointName("1breakpoint", E));
   22   EXPECT_FALSE(BreakpointID::StringIsBreakpointName("-", E));
   23   EXPECT_FALSE(BreakpointID::StringIsBreakpointName("", E));
   24   EXPECT_FALSE(BreakpointID::StringIsBreakpointName("3.4", E));
   26   EXPECT_TRUE(BreakpointID::StringIsBreakpointName("_", E));
   27   EXPECT_TRUE(BreakpointID::StringIsBreakpointName("a123", E));
   28   EXPECT_TRUE(BreakpointID::StringIsBreakpointName("test", E));