Home | History | Annotate | Download | only in internal

Lines Matching refs:FullMatch

843   // FullMatch(str, re) returns true iff regular expression re matches
848 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
850 static bool FullMatch(const ::std::string& str, const RE& re) {
851 return FullMatch(str.c_str(), re);
859 static bool FullMatch(const ::string& str, const RE& re) {
860 return FullMatch(str.c_str(), re);
868 static bool FullMatch(const char* str, const RE& re);
883 regex_t full_regex_; // For FullMatch().
888 const char* full_pattern_; // For FullMatch();