Home | History | Annotate | Download | only in test

Lines Matching refs:MatchRegexAnywhere

621   EXPECT_FALSE(MatchRegexAnywhere("", NULL));
625 EXPECT_FALSE(MatchRegexAnywhere("^a", "ba"));
626 EXPECT_FALSE(MatchRegexAnywhere("^$", "a"));
628 EXPECT_TRUE(MatchRegexAnywhere("^a", "ab"));
629 EXPECT_TRUE(MatchRegexAnywhere("^", "ab"));
630 EXPECT_TRUE(MatchRegexAnywhere("^$", ""));
634 EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123"));
635 EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888"));
639 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5"));
640 EXPECT_TRUE(MatchRegexAnywhere(".*=", "="));
641 EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc"));
645 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5"));
646 EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...="));