/external/chromium_org/third_party/icu/source/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 | 59 #define ANCHOR_START ((UChar)0x005E) /*^*/ 504 case ANCHOR_START: [all...] |
/external/icu/icu4c/source/i18n/ |
rbt_rule.cpp | 111 flags |= ANCHOR_START; 210 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); 307 (!(flags & ANCHOR_START) && !(flags & ANCHOR_END)) || 308 ((r2.flags & ANCHOR_START) && (r2.flags & ANCHOR_END)); 403 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { 481 if ((flags & ANCHOR_START) != 0) {
|
rbt_rule.h | 136 ANCHOR_START = 1,
|
rbt_pars.cpp | 61 #define ANCHOR_START ((UChar)0x005E) /*^*/ 510 case ANCHOR_START: [all...] |
/external/chromium_org/third_party/re2/re2/ |
bitstate.cc | 301 if (prog_->anchor_start() && context_.begin() != text.begin()) 305 anchored_ = anchored || prog_->anchor_start();
|
re2.cc | 329 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) { 579 if (prog_->anchor_start() && startpos != 0) 584 if (prog_->anchor_start() && prog_->anchor_end()) 586 else if (prog_->anchor_start() && re_anchor != ANCHOR_BOTH) 587 re_anchor = ANCHOR_START; 605 // If there is a required prefix, the anchor must be at least ANCHOR_START. 607 re_anchor = ANCHOR_START; 688 case ANCHOR_START: [all...] |
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())
|
/external/chromium_org/third_party/re2/re2/testing/ |
backtrack.cc | 101 if (prog_->anchor_start() && text.begin() > context_.begin()) 105 anchored_ = anchored | prog_->anchor_start();
|
tester.cc | 387 re_anchor = RE2::ANCHOR_START; 417 pcre_anchor = PCRE::ANCHOR_START;
|
/external/regex-re2/re2/ |
bitstate.cc | 301 if (prog_->anchor_start() && context_.begin() != text.begin()) 305 anchored_ = anchored || prog_->anchor_start();
|
re2.cc | 311 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) { 561 if (prog_->anchor_start() && startpos != 0) 566 if (prog_->anchor_start() && prog_->anchor_end()) 568 else if (prog_->anchor_start() && re_anchor != ANCHOR_BOTH) 569 re_anchor = ANCHOR_START; 587 // If there is a required prefix, the anchor must be at least ANCHOR_START. 589 re_anchor = ANCHOR_START; 670 case ANCHOR_START: [all...] |
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())
|
/external/regex-re2/re2/testing/ |
backtrack.cc | 101 if (prog_->anchor_start() && text.begin() > context_.begin()) 105 anchored_ = anchored | prog_->anchor_start();
|
tester.cc | 387 re_anchor = RE2::ANCHOR_START; 417 pcre_anchor = PCRE::ANCHOR_START;
|
/external/chromium_org/third_party/re2/util/ |
pcre.cc | 116 // ANCHOR_START Compile the original pattern, and use 273 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed, 371 matches = pattern.TryMatch(*str, start, ANCHOR_START, false, [all...] |
pcre.h | 453 ANCHOR_START, // Anchor at start only
|
/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
|
/external/chromium_org/chrome/browser/extensions/api/web_request/ |
form_data_parser.cc | 435 return pattern.Match(input, 0, input.size(), RE2::ANCHOR_START, NULL, 0);
|