Home
last modified time | relevance | path

Searched refs:StringIsBreakpointName (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/unittests/Breakpoint/
DBreakpointIDTest.cpp19 TEST(BreakpointIDTest, StringIsBreakpointName) { in TEST() argument
21 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("1breakpoint", E)); in TEST()
22 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("-", E)); in TEST()
23 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("", E)); in TEST()
24 EXPECT_FALSE(BreakpointID::StringIsBreakpointName("3.4", E)); in TEST()
26 EXPECT_TRUE(BreakpointID::StringIsBreakpointName("_", E)); in TEST()
27 EXPECT_TRUE(BreakpointID::StringIsBreakpointName("a123", E)); in TEST()
28 EXPECT_TRUE(BreakpointID::StringIsBreakpointName("test", E)); in TEST()
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointID.h75 static bool StringIsBreakpointName(llvm::StringRef str, Status &error);
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointID.cpp95 bool BreakpointID::StringIsBreakpointName(llvm::StringRef str, Status &error) { in StringIsBreakpointName() function in BreakpointID
DBreakpointList.cpp140 if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(name), error)) in FindBreakpointsByName()
DBreakpointIDList.cpp140 } else if (BreakpointID::StringIsBreakpointName(current_arg, error)) { in FindAndReplaceIDRanges()
/external/llvm-project/lldb/source/Commands/
DCommandObjectBreakpoint.cpp397 if (BreakpointID::StringIsBreakpointName(option_arg, error)) in SetOptionValue()
1595 if (BreakpointID::StringIsBreakpointName(option_arg, error) && in SetOptionValue()
1751 if (!BreakpointID::StringIsBreakpointName(entry.ref(), error)) { in DoExecute()
2108 if (!BreakpointID::StringIsBreakpointName(llvm::StringRef(option_arg), in SetOptionValue()
/external/llvm-project/lldb/source/Target/
DTarget.cpp694 BreakpointID::StringIsBreakpointName(name.GetStringRef(), error); in FindBreakpointName()