Home
last modified time | relevance | path

Searched refs:PartialMatch (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/googletest/googletest/test/
H A Dgoogletest-port-test.cc440 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); in TYPED_TEST()
444 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); in TYPED_TEST()
446 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re)); in TYPED_TEST()
447 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re)); in TYPED_TEST()
906 EXPECT_TRUE(RE::PartialMatch("", empty)); in TEST()
907 EXPECT_TRUE(RE::PartialMatch("a", empty)); in TEST()
910 EXPECT_TRUE(RE::PartialMatch("az", re)); in TEST()
911 EXPECT_TRUE(RE::PartialMatch("axyz", re)); in TEST()
912 EXPECT_TRUE(RE::PartialMatch("baz", re)); in TEST()
913 EXPECT_TRUE(RE::PartialMatch("azy", re)); in TEST()
[all …]
/freebsd-12.1/contrib/googletest/googletest/include/gtest/
H A Dgtest-death-test.h319 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1272 static bool PartialMatch(const ::std::string& str, const RE& re) {
1273 return PartialMatch(str.c_str(), re);
1281 static bool PartialMatch(const ::string& str, const RE& re) {
1282 return PartialMatch(str.c_str(), re);
1288 static bool PartialMatch(const char* str, const RE& re);
/freebsd-12.1/contrib/googletest/googletest/src/
H A Dgtest-port.cc643 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
893 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
H A Dgtest-death-test.cc584 const bool matched = RE::PartialMatch(error_message, *regex()); in Passed()
586 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); in Passed()
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1584 RE::PartialMatch(s2, *regex_);