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

/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc435 // Tests RE::FullMatch().
438 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
439 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
442 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
443 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
444 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
445 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
898 // Tests RE::FullMatch().
901 EXPECT_TRUE(RE::FullMatch("", empty));
902 EXPECT_FALSE(RE::FullMatch("
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1177 // FullMatch(str, re) returns true iff regular expression re matches
1182 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
1184 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE
1185 return FullMatch(str.c_str(), re);
1193 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE
1194 return FullMatch(str.c_str(), re);
1202 static bool FullMatch(const char* str, const RE& re);
1216 regex_t full_regex_; // For FullMatch().
1221 const char* full_pattern_; // For FullMatch();
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc577 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
830 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1349 return full_match_ ? RE::FullMatch(s2, *regex_) :

Completed in 41 milliseconds