/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | TransliterationRule.java | 116 static final int ANCHOR_START = 1; field in TransliterationRule 196 flags |= ANCHOR_START; in TransliterationRule() 230 return anteContextLength + (((flags & ANCHOR_START) != 0) ? 1 : 0); in getAnteContextLength() 326 (!((flags & ANCHOR_START) != 0) && !((flags & ANCHOR_END) != 0)) || in masks() 327 (((r2.flags & ANCHOR_START) != 0) && ((r2.flags & ANCHOR_END) != 0)); in masks() 423 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 505 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | TransliteratorParser.java | 154 private static final char ANCHOR_START = '^'; field in TransliteratorParser 554 case ANCHOR_START: in parseSection()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TransliterationRule.java | 117 static final int ANCHOR_START = 1; field in TransliterationRule 197 flags |= ANCHOR_START; in TransliterationRule() 231 return anteContextLength + (((flags & ANCHOR_START) != 0) ? 1 : 0); in getAnteContextLength() 327 (!((flags & ANCHOR_START) != 0) && !((flags & ANCHOR_END) != 0)) || in masks() 328 (((r2.flags & ANCHOR_START) != 0) && ((r2.flags & ANCHOR_END) != 0)); in masks() 424 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 506 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | TransliteratorParser.java | 155 private static final char ANCHOR_START = '^'; field in TransliteratorParser 555 case ANCHOR_START: in parseSection()
|
/external/icu/icu4c/source/i18n/ |
D | rbt_rule.cpp | 113 flags |= ANCHOR_START; in TransliterationRule() 212 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); in getContextLength() 309 (!(flags & ANCHOR_START) && !(flags & ANCHOR_END)) || in masks() 310 ((r2.flags & ANCHOR_START) && (r2.flags & ANCHOR_END)); in masks() 405 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 483 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | rbt_rule.h | 138 ANCHOR_START = 1, enumerator
|
D | rbt_pars.cpp | 63 #define ANCHOR_START ((UChar)0x005E) /*^*/ macro 512 case ANCHOR_START: in parseSection()
|
/external/cronet/third_party/icu/source/i18n/ |
D | rbt_rule.cpp | 113 flags |= ANCHOR_START; in TransliterationRule() 212 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); in getContextLength() 309 (!(flags & ANCHOR_START) && !(flags & ANCHOR_END)) || in masks() 310 ((r2.flags & ANCHOR_START) && (r2.flags & ANCHOR_END)); in masks() 405 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 483 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | rbt_rule.h | 138 ANCHOR_START = 1, enumerator
|
D | rbt_pars.cpp | 63 #define ANCHOR_START ((UChar)0x005E) /*^*/ macro 512 case ANCHOR_START: in parseSection()
|
/external/icu/libicu/cts_headers/ |
D | rbt_rule.h | 138 ANCHOR_START = 1, enumerator
|
/external/tensorflow/tensorflow/compiler/xla/tools/ |
D | hlo_module_loader.cc | 58 if (matcher->Match(line, 0, line.size(), RE2::ANCHOR_START, matches, 4)) { in StripLogHeaders()
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | re2.cc | 384 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) { in ConsumeN() 663 re_anchor = ANCHOR_START; in GlobalReplace() 683 re_anchor = ANCHOR_START; in GlobalReplace() 789 case ANCHOR_START: in GlobalReplace()
|
D | re2.h | 489 ANCHOR_START, // Anchor at start only enumerator
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | tester.cc | 402 re_anchor = RE2::ANCHOR_START; in RunSearch() 456 pcre_anchor = PCRE::ANCHOR_START; in RunSearch()
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/util/ |
D | pcre.h | 438 ANCHOR_START, // Anchor at start only enumerator
|
D | pcre.cc | 320 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed, in operator ()() 418 matches = pattern.TryMatch(*str, start, ANCHOR_START, false, in GlobalReplace()
|