HomeSort by relevance Sort by last modified time
    Searched full:anchor_start (Results 1 - 13 of 13) sorted by null

  /external/regex-re2/re2/
re2.cc 288 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) {
537 if (prog_->anchor_start() && startpos != 0)
542 if (prog_->anchor_start() && prog_->anchor_end())
544 else if (prog_->anchor_start() && re_anchor != ANCHOR_BOTH)
545 re_anchor = ANCHOR_START;
563 // If there is a required prefix, the anchor must be at least ANCHOR_START.
565 re_anchor = ANCHOR_START;
645 case ANCHOR_START:
    [all...]
bitstate.cc 301 if (prog_->anchor_start() && context_.begin() != text.begin())
305 anchored_ = anchored || prog_->anchor_start();
nfa.cc 419 if (prog_->anchor_start() && context.begin() != text.begin())
423 anchored |= prog_->anchor_start();
prog.h 212 bool anchor_start() { return anchor_start_; } function in class:re2::Prog
onepass.cc 233 if (anchor_start() && context.begin() != text.begin())
re2.h 412 ANCHOR_START, // Anchor at start only
    [all...]
dfa.cc     [all...]
compile.cc 1029 if (c.prog_->anchor_start()) {
    [all...]
  /external/icu4c/i18n/
rbt_rule.cpp 110 flags |= ANCHOR_START;
209 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0);
306 (!(flags & ANCHOR_START) && !(flags & ANCHOR_END)) ||
307 ((r2.flags & ANCHOR_START) && (r2.flags & ANCHOR_END));
402 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) {
480 if ((flags & ANCHOR_START) != 0) {
rbt_rule.h 136 ANCHOR_START = 1,
rbt_pars.cpp 60 #define ANCHOR_START ((UChar)0x005E) /*^*/
505 case ANCHOR_START:
    [all...]
  /external/regex-re2/util/
pcre.cc 111 // ANCHOR_START Compile the original pattern, and use
268 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed,
366 matches = pattern.TryMatch(*str, start, ANCHOR_START, false,
    [all...]
pcre.h 447 ANCHOR_START, // Anchor at start only

Completed in 295 milliseconds