Home
last modified time | relevance | path

Searched refs:MatchRepetitionAndRegexAtHead (Results 1 – 3 of 3) sorted by relevance

/freebsd-14-stable/contrib/googletest/googletest/test/
HDgoogletest-port-test.cc761 EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "a", "ba")); in TEST()
763 EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "aab")); in TEST()
766 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "ba")); in TEST()
768 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "ab")); in TEST()
769 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '#', '?', ".", "##")); in TEST()
773 EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '*', "a$", "baab")); in TEST()
776 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '*', "b", "bc")); in TEST()
778 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '*', "b", "abc")); in TEST()
780 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(true, 'w', '*', "-", "ab_1-g")); in TEST()
784 EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '+', "a$", "baab")); in TEST()
[all …]
/freebsd-14-stable/contrib/googletest/googletest/src/
HDgtest-port.cc882 bool MatchRepetitionAndRegexAtHead(bool escaped, char c, char repeat, in MatchRepetitionAndRegexAtHead() function
921 return MatchRepetitionAndRegexAtHead(escaped, regex[0], regex[1], regex + 2, in MatchRegexAtHead()
HDgtest-internal-inl.h996 GTEST_API_ bool MatchRepetitionAndRegexAtHead(bool escaped, char ch,