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

References

tools/lldb/source/Commands/CommandObjectPlatform.cpp
 1098               case NameMatch::StartsWith:
 1244         match_info.SetNameMatchType(NameMatch::StartsWith);
 1466         match_info.SetNameMatchType(NameMatch::StartsWith);
tools/lldb/source/Commands/CommandObjectProcess.cpp
  349         match_info.SetNameMatchType(NameMatch::StartsWith);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 2165         case NameMatch::StartsWith:
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  355                                    .Case("starts_with", NameMatch::StartsWith)
tools/lldb/source/Utility/NameMatches.cpp
   24   case NameMatch::StartsWith:
tools/lldb/unittests/Utility/NameMatchesTest.cpp
   34   EXPECT_TRUE(NameMatches("foo", NameMatch::StartsWith, "f"));
   35   EXPECT_TRUE(NameMatches("foo", NameMatch::StartsWith, ""));
   36   EXPECT_TRUE(NameMatches("", NameMatch::StartsWith, ""));
   37   EXPECT_FALSE(NameMatches("foo", NameMatch::StartsWith, "b"));
   38   EXPECT_FALSE(NameMatches("", NameMatch::StartsWith, "b"));