Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/googletest/googletest/test/
H A Dgoogletest-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()
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()
786 EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '+', "b", "bc")); in TEST()
789 EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '+', "b", "abc")); in TEST()
[all …]
/freebsd-14.2/contrib/googletest/googletest/src/
H A Dgtest-port.cc856 bool MatchRepetitionAndRegexAtHead(bool escaped, char c, char repeat, in MatchRepetitionAndRegexAtHead() function
895 return MatchRepetitionAndRegexAtHead(escaped, regex[0], regex[1], regex + 2, in MatchRegexAtHead()
H A Dgtest-internal-inl.h984 GTEST_API_ bool MatchRepetitionAndRegexAtHead(bool escaped, char ch,