Home | History | Annotate | Download | only in internal

Lines Matching defs:PartialMatch

679   // PartialMatch(str, re) returns true iff regular expression re
682 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
687 static bool PartialMatch(const ::std::string& str, const RE& re) {
688 return PartialMatch(str.c_str(), re);
695 static bool PartialMatch(const ::string& str, const RE& re) {
696 return PartialMatch(str.c_str(), re);
701 static bool PartialMatch(const char* str, const RE& re);
714 regex_t partial_regex_; // For PartialMatch().