HomeSort by relevance Sort by last modified time
    Searched defs:TryMatch (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/re2/util/
pcre.cc 335 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize);
371 matches = pattern.TryMatch(*str, start, ANCHOR_START, false,
381 matches = pattern.TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
410 int matches = pattern.TryMatch(text, 0, UNANCHORED, true, vec, kVecSize);
462 int PCRE::TryMatch(const StringPiece& text,
566 int matches = TryMatch(text, 0, anchor, true, vec, vecsize);
567 assert(matches >= 0); // TryMatch never returns negatives
584 // -- see the comment for TryMatch.
    [all...]
  /external/pcre/dist/
pcrecpp.cc 335 int matches = TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize);
402 matches = TryMatch(*str, start, ANCHOR_START, false, vec, kVecSize);
432 matches = TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
459 int matches = TryMatch(text, 0, UNANCHORED, true, vec, kVecSize);
502 int RE::TryMatch(const StringPiece& text,
568 int matches = TryMatch(text, 0, anchor, true, vec, vecsize);
569 assert(matches >= 0); // TryMatch never returns negatives
587 // -- see the comment for TryMatch.
  /external/regex-re2/util/
pcre.cc 330 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize);
366 matches = pattern.TryMatch(*str, start, ANCHOR_START, false,
376 matches = pattern.TryMatch(*str, start, UNANCHORED, true, vec, kVecSize);
405 int matches = pattern.TryMatch(text, 0, UNANCHORED, true, vec, kVecSize);
457 int PCRE::TryMatch(const StringPiece& text,
561 int matches = TryMatch(text, 0, anchor, true, vec, vecsize);
562 assert(matches >= 0); // TryMatch never returns negatives
579 // -- see the comment for TryMatch.
    [all...]

Completed in 5257 milliseconds