Home | History | Annotate | Download | only in test

Lines Matching refs:MatchRegexAnywhere

814   EXPECT_FALSE(MatchRegexAnywhere("", NULL));
818 EXPECT_FALSE(MatchRegexAnywhere("^a", "ba"));
819 EXPECT_FALSE(MatchRegexAnywhere("^$", "a"));
821 EXPECT_TRUE(MatchRegexAnywhere("^a", "ab"));
822 EXPECT_TRUE(MatchRegexAnywhere("^", "ab"));
823 EXPECT_TRUE(MatchRegexAnywhere("^$", ""));
827 EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123"));
828 EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888"));
832 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5"));
833 EXPECT_TRUE(MatchRegexAnywhere(".*=", "="));
834 EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc"));
838 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5"));
839 EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...="));