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

  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliterationRule.java 115 static final int ANCHOR_START = 1;
195 flags |= ANCHOR_START;
229 return anteContextLength + (((flags & ANCHOR_START) != 0) ? 1 : 0);
325 (!((flags & ANCHOR_START) != 0) && !((flags & ANCHOR_END) != 0)) ||
326 (((r2.flags & ANCHOR_START) != 0) && ((r2.flags & ANCHOR_END) != 0));
422 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) {
504 if ((flags & ANCHOR_START) != 0) {
TransliteratorParser.java 153 private static final char ANCHOR_START = '^';
548 case ANCHOR_START:
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliterationRule.java 114 static final int ANCHOR_START = 1;
194 flags |= ANCHOR_START;
228 return anteContextLength + (((flags & ANCHOR_START) != 0) ? 1 : 0);
324 (!((flags & ANCHOR_START) != 0) && !((flags & ANCHOR_END) != 0)) ||
325 (((r2.flags & ANCHOR_START) != 0) && ((r2.flags & ANCHOR_END) != 0));
421 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) {
503 if ((flags & ANCHOR_START) != 0) {
TransliteratorParser.java 152 private static final char ANCHOR_START = '^';
547 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/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())
dfa.cc     [all...]
compile.cc 1030 if (c.prog_->anchor_start()) {
    [all...]
re2.h 431 ANCHOR_START, // Anchor at start only
    [all...]
  /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/pcre/dist/
pcre_scanner.cc 129 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0);
pcrecpp.cc 124 // ANCHOR_START Compile the original pattern, and use
275 if (DoMatchImpl(*input, ANCHOR_START, &consumed,
402 matches = TryMatch(*str, start, ANCHOR_START, false, vec, kVecSize);
pcrecpp.h 634 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
  /prebuilts/tools/linux-x86_64/kythe/proto/
xref.proto 348 Location.Point anchor_start = 10;

Completed in 2202 milliseconds