Home | History | Annotate | Download | only in internal

Lines Matching refs:FullMatch

961   // FullMatch(str, re) returns true iff regular expression re matches
966 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
968 static bool FullMatch(const ::std::string& str, const RE& re) {
969 return FullMatch(str.c_str(), re);
977 static bool FullMatch(const ::string& str, const RE& re) {
978 return FullMatch(str.c_str(), re);
986 static bool FullMatch(const char* str, const RE& re);
1000 regex_t full_regex_; // For FullMatch().
1005 const char* full_pattern_; // For FullMatch();