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

References

tools/lldb/source/Commands/CommandObjectPlatform.cpp
 1095               case NameMatch::Contains:
 1250         match_info.SetNameMatchType(NameMatch::Contains);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 2161         case NameMatch::Contains:
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  357                                    .Case("contains", NameMatch::Contains)
tools/lldb/source/Utility/NameMatches.cpp
   22   case NameMatch::Contains:
tools/lldb/unittests/Utility/NameMatchesTest.cpp
   24   EXPECT_TRUE(NameMatches("foobar", NameMatch::Contains, "foo"));
   25   EXPECT_TRUE(NameMatches("foobar", NameMatch::Contains, "oob"));
   26   EXPECT_TRUE(NameMatches("foobar", NameMatch::Contains, "bar"));
   27   EXPECT_TRUE(NameMatches("foobar", NameMatch::Contains, "foobar"));
   28   EXPECT_TRUE(NameMatches("", NameMatch::Contains, ""));
   29   EXPECT_FALSE(NameMatches("", NameMatch::Contains, "foo"));
   30   EXPECT_FALSE(NameMatches("foobar", NameMatch::Contains, "baz"));