Home | History | Annotate | Download | only in internal

Lines Matching defs:FullMatch

947   // FullMatch(str, re) returns true iff regular expression re matches
952 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
954 static bool FullMatch(const ::std::string& str, const RE& re) {
955 return FullMatch(str.c_str(), re);
963 static bool FullMatch(const ::string& str, const RE& re) {
964 return FullMatch(str.c_str(), re);
972 static bool FullMatch(const char* str, const RE& re);
986 regex_t full_regex_; // For FullMatch().
991 const char* full_pattern_; // For FullMatch();