Home
last modified time | relevance | path

Searched refs:FullMatch (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-port_test.cc443 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)); in TYPED_TEST()
444 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty)); in TYPED_TEST()
447 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re)); in TYPED_TEST()
448 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re)); in TYPED_TEST()
449 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re)); in TYPED_TEST()
450 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re)); in TYPED_TEST()
906 EXPECT_TRUE(RE::FullMatch("", empty)); in TEST()
907 EXPECT_FALSE(RE::FullMatch("a", empty)); in TEST()
910 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST()
913 EXPECT_TRUE(RE::FullMatch("az", re)); in TEST()
[all …]
Dgtest-printers_test.cc1124 EXPECT_PRED2(RE::FullMatch, Print(msg), in TEST()
1136 EXPECT_PRED2(RE::FullMatch, Print(msg), in TEST()
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-port.h954 static bool FullMatch(const ::std::string& str, const RE& re) {
955 return FullMatch(str.c_str(), re);
963 static bool FullMatch(const ::string& str, const RE& re) {
964 return FullMatch(str.c_str(), re);
972 static bool FullMatch(const char* str, const RE& re);
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-port.cc153 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE
406 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE