Lines Matching refs:MatchRegexAnywhere
608 EXPECT_FALSE(MatchRegexAnywhere("", NULL));
612 EXPECT_FALSE(MatchRegexAnywhere("^a", "ba"));
613 EXPECT_FALSE(MatchRegexAnywhere("^$", "a"));
615 EXPECT_TRUE(MatchRegexAnywhere("^a", "ab"));
616 EXPECT_TRUE(MatchRegexAnywhere("^", "ab"));
617 EXPECT_TRUE(MatchRegexAnywhere("^$", ""));
621 EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123"));
622 EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888"));
626 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5"));
627 EXPECT_TRUE(MatchRegexAnywhere(".*=", "="));
628 EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc"));
632 EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5"));
633 EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...="));