Home | History | Annotate | Download | only in internal

Lines Matching defs:PartialMatch

963   // PartialMatch(str, re) returns true iff regular expression re
966 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
971 static bool PartialMatch(const ::std::string& str, const RE& re) {
972 return PartialMatch(str.c_str(), re);
980 static bool PartialMatch(const ::string& str, const RE& re) {
981 return PartialMatch(str.c_str(), re);
987 static bool PartialMatch(const char* str, const RE& re);
1001 regex_t partial_regex_; // For PartialMatch().