Home | History | Annotate | Download | only in gtest

Lines Matching defs:FullMatch

2054   // FullMatch(str, re) returns true iff regular expression re matches
2059 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
2061 static bool FullMatch(const ::std::string& str, const RE& re) {
2062 return FullMatch(str.c_str(), re);
2070 static bool FullMatch(const ::string& str, const RE& re) {
2071 return FullMatch(str.c_str(), re);
2079 static bool FullMatch(const char* str, const RE& re);
2093 regex_t full_regex_; // For FullMatch().
2098 const char* full_pattern_; // For FullMatch();