Home | History | Annotate | Download | only in test

Lines Matching refs:MatchRegexAnywhere

851   EXPECT_FALSE(MatchRegexAnywhere("", NULL));
855 EXPECT_FALSE(MatchRegexAnywhere("^a", "ba"));
856 EXPECT_FALSE(MatchRegexAnywhere("^$", "a"));
858 EXPECT_TRUE(MatchRegexAnywhere("^a", "ab"));
859 EXPECT_TRUE(MatchRegexAnywhere("^", "ab"));
860 EXPECT_TRUE(MatchRegexAnywhere("^$", ""));
864 EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123"));
865 EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888"));
869 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5"));
870 EXPECT_TRUE(MatchRegexAnywhere(".*=", "="));
871 EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc"));
875 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5"));
876 EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...="));