Home | History | Annotate | Download | only in util

Lines Matching refs:re

118   pcre* re;
120 re = pcre_compile(pattern_.c_str(),
129 re = pcre_compile(wrapped.c_str(),
133 if (re == NULL) {
137 return re;
143 const PCRE& re,
182 return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
186 const PCRE& re,
225 return re.DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
463 pcre* re = (anchor == ANCHOR_BOTH) ? re_full_ : re_partial_;
464 if (re == NULL) {
465 PCREPORT(ERROR) << "Matching against invalid re: " << *error_;
495 int rc = pcre_exec(re, // The regular expression object
542 << ", re=" << re