Home | History | Annotate | Download | only in gtest

Lines Matching defs:PartialMatch

2056   // PartialMatch(str, re) returns true iff regular expression re
2059 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
2064 static bool PartialMatch(const ::std::string& str, const RE& re) {
2065 return PartialMatch(str.c_str(), re);
2073 static bool PartialMatch(const ::string& str, const RE& re) {
2074 return PartialMatch(str.c_str(), re);
2080 static bool PartialMatch(const char* str, const RE& re);
2094 regex_t partial_regex_; // For PartialMatch().
8466 ::testing::internal::RE::PartialMatch(".*", (regex)); \