Home | History | Annotate | Download | only in test

Lines Matching refs:MatchRegexAnywhere

846   EXPECT_FALSE(MatchRegexAnywhere("", NULL));
850 EXPECT_FALSE(MatchRegexAnywhere("^a", "ba"));
851 EXPECT_FALSE(MatchRegexAnywhere("^$", "a"));
853 EXPECT_TRUE(MatchRegexAnywhere("^a", "ab"));
854 EXPECT_TRUE(MatchRegexAnywhere("^", "ab"));
855 EXPECT_TRUE(MatchRegexAnywhere("^$", ""));
859 EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123"));
860 EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888"));
864 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5"));
865 EXPECT_TRUE(MatchRegexAnywhere(".*=", "="));
866 EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc"));
870 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5"));
871 EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...="));