/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | TransliterationRule.java | 114 static final int ANCHOR_START = 1; field in TransliterationRule 194 flags |= ANCHOR_START; in TransliterationRule() 228 return anteContextLength + (((flags & ANCHOR_START) != 0) ? 1 : 0); in getAnteContextLength() 324 (!((flags & ANCHOR_START) != 0) && !((flags & ANCHOR_END) != 0)) || in masks() 325 (((r2.flags & ANCHOR_START) != 0) && ((r2.flags & ANCHOR_END) != 0)); in masks() 421 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 503 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | TransliteratorParser.java | 152 private static final char ANCHOR_START = '^'; field in TransliteratorParser 547 case ANCHOR_START: in parseSection()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TransliterationRule.java | 115 static final int ANCHOR_START = 1; field in TransliterationRule 195 flags |= ANCHOR_START; in TransliterationRule() 229 return anteContextLength + (((flags & ANCHOR_START) != 0) ? 1 : 0); in getAnteContextLength() 325 (!((flags & ANCHOR_START) != 0) && !((flags & ANCHOR_END) != 0)) || in masks() 326 (((r2.flags & ANCHOR_START) != 0) && ((r2.flags & ANCHOR_END) != 0)); in masks() 422 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 504 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | TransliteratorParser.java | 153 private static final char ANCHOR_START = '^'; field in TransliteratorParser 548 case ANCHOR_START: in parseSection()
|
/external/icu/icu4c/source/i18n/ |
D | rbt_rule.cpp | 111 flags |= ANCHOR_START; in TransliterationRule() 210 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); in getContextLength() 307 (!(flags & ANCHOR_START) && !(flags & ANCHOR_END)) || in masks() 308 ((r2.flags & ANCHOR_START) && (r2.flags & ANCHOR_END)); in masks() 403 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 481 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | rbt_rule.h | 136 ANCHOR_START = 1, enumerator
|
D | rbt_pars.cpp | 61 #define ANCHOR_START ((UChar)0x005E) /*^*/ macro 510 case ANCHOR_START: in parseSection()
|
/external/pcre/dist/ |
D | pcre_scanner.cc | 129 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0); in LookingAt()
|
D | pcrecpp.h | 634 ANCHOR_START, // Anchor at start only enumerator
|
D | pcrecpp.cc | 275 if (DoMatchImpl(*input, ANCHOR_START, &consumed, in Consume() 402 matches = TryMatch(*str, start, ANCHOR_START, false, vec, kVecSize); in GlobalReplace()
|
/external/regex-re2/re2/ |
D | re2.cc | 311 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) { in ConsumeN() 569 re_anchor = ANCHOR_START; in Match() 589 re_anchor = ANCHOR_START; in Match() 670 case ANCHOR_START: in Match()
|
D | re2.h | 431 ANCHOR_START, // Anchor at start only enumerator
|
/external/regex-re2/re2/testing/ |
D | tester.cc | 387 re_anchor = RE2::ANCHOR_START; in RunSearch() 417 pcre_anchor = PCRE::ANCHOR_START; in RunSearch()
|
/external/pcre/ |
D | pcrecpp.h | 634 ANCHOR_START, // Anchor at start only enumerator
|
/external/regex-re2/util/ |
D | pcre.cc | 268 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed, in operator ()() 366 matches = pattern.TryMatch(*str, start, ANCHOR_START, false, in GlobalReplace()
|
D | pcre.h | 447 ANCHOR_START, // Anchor at start only enumerator
|