Searched refs:DoMatchImpl (Results 1 – 5 of 5) sorted by relevance
/external/pcre/dist/ |
D | pcrecpp.cc | 191 return DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize); in FullMatch() 233 return DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize); in PartialMatch() 275 if (DoMatchImpl(*input, ANCHOR_START, &consumed, in Consume() 323 if (DoMatchImpl(*input, UNANCHORED, &consumed, in FindAndConsume() 560 bool RE::DoMatchImpl(const StringPiece& text, in DoMatchImpl() function in pcrecpp::RE 610 bool retval = DoMatchImpl(text, anchor, consumed, args, n, vec, (int)vecsize); in DoMatch()
|
D | pcrecpp.h | 690 bool DoMatchImpl(const StringPiece& text,
|
/external/regex-re2/util/ |
D | pcre.cc | 182 return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize); in operator ()() 225 return re.DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize); in operator ()() 268 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed, in operator ()() 317 if (pattern.DoMatchImpl(*input, UNANCHORED, &consumed, in operator ()() 553 bool PCRE::DoMatchImpl(const StringPiece& text, in DoMatchImpl() function in re2::PCRE 601 bool b = DoMatchImpl(text, anchor, consumed, args, n, vec, vecsize); in DoMatch()
|
D | pcre.h | 493 bool DoMatchImpl(const StringPiece& text,
|
/external/pcre/ |
D | pcrecpp.h | 690 bool DoMatchImpl(const StringPiece& text,
|