Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-port-test.cc435 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)); in TYPED_TEST()
439 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re)); in TYPED_TEST()
440 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re)); in TYPED_TEST()
441 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re)); in TYPED_TEST()
892 EXPECT_TRUE(RE::FullMatch("", empty)); in TEST()
893 EXPECT_FALSE(RE::FullMatch("a", empty)); in TEST()
896 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST()
899 EXPECT_TRUE(RE::FullMatch("az", re)); in TEST()
900 EXPECT_TRUE(RE::FullMatch("axyz", re)); in TEST()
901 EXPECT_FALSE(RE::FullMatch("baz", re)); in TEST()
[all …]
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h949 static bool FullMatch(absl::string_view str, const RE& re) { in FullMatch() function
950 return RE2::FullMatch(str, re.regex_); in FullMatch()
985 static bool FullMatch(const ::std::string& str, const RE& re) { in FullMatch() function
986 return FullMatch(str.c_str(), re); in FullMatch()
992 static bool FullMatch(const char* str, const RE& re);
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-port.cc680 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE
931 bool RE::FullMatch(const char* str, const RE& re) { in FullMatch() function in testing::internal::RE
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1151 StringRef FullMatch = MatchInfo[0]; in match() local
1165 TheMatch.Pos = FullMatch.data() - Buffer.data() + MatchStartSkip; in match()
1166 TheMatch.Len = FullMatch.size() - MatchStartSkip; in match()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc766 TEST(VariantTest, FullMatch) { in TEST() argument
811 TEST(AnyWithTest, FullMatch) { in TEST() argument
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h813 return full_match_ ? RE::FullMatch(s2, *regex_)