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

References

tools/lldb/source/Commands/CommandObjectPlatform.cpp
 1101               case NameMatch::EndsWith:
 1238         match_info.SetNameMatchType(NameMatch::EndsWith);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 2169         case NameMatch::EndsWith:
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  356                                    .Case("ends_with", NameMatch::EndsWith)
tools/lldb/source/Utility/NameMatches.cpp
   26   case NameMatch::EndsWith:
tools/lldb/unittests/Utility/NameMatchesTest.cpp
   42   EXPECT_TRUE(NameMatches("foo", NameMatch::EndsWith, "o"));
   43   EXPECT_TRUE(NameMatches("foo", NameMatch::EndsWith, ""));
   44   EXPECT_TRUE(NameMatches("", NameMatch::EndsWith, ""));
   45   EXPECT_FALSE(NameMatches("foo", NameMatch::EndsWith, "b"));
   46   EXPECT_FALSE(NameMatches("", NameMatch::EndsWith, "b"));