Home | History | Annotate | Download | only in internal

Lines Matching refs:FullMatch

854   // FullMatch(str, re) returns true iff regular expression re matches
859 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
861 static bool FullMatch(const ::std::string& str, const RE& re) {
862 return FullMatch(str.c_str(), re);
870 static bool FullMatch(const ::string& str, const RE& re) {
871 return FullMatch(str.c_str(), re);
879 static bool FullMatch(const char* str, const RE& re);
894 regex_t full_regex_; // For FullMatch().
899 const char* full_pattern_; // For FullMatch();