Home
last modified time | relevance | path

Searched refs:ANCHOR_START (Results 1 – 17 of 17) sorted by relevance

/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliterationRule.java116 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()
DTransliteratorParser.java154 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/
DTransliterationRule.java117 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()
DTransliteratorParser.java155 private static final char ANCHOR_START = '^'; field in TransliteratorParser
555 case ANCHOR_START: in parseSection()
/external/icu/icu4c/source/i18n/
Drbt_rule.cpp113 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()
Drbt_rule.h138 ANCHOR_START = 1, enumerator
Drbt_pars.cpp63 #define ANCHOR_START ((UChar)0x005E) /*^*/ macro
512 case ANCHOR_START: in parseSection()
/external/cronet/third_party/icu/source/i18n/
Drbt_rule.cpp113 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()
Drbt_rule.h138 ANCHOR_START = 1, enumerator
Drbt_pars.cpp63 #define ANCHOR_START ((UChar)0x005E) /*^*/ macro
512 case ANCHOR_START: in parseSection()
/external/icu/libicu/cts_headers/
Drbt_rule.h138 ANCHOR_START = 1, enumerator
/external/tensorflow/tensorflow/compiler/xla/tools/
Dhlo_module_loader.cc58 if (matcher->Match(line, 0, line.size(), RE2::ANCHOR_START, matches, 4)) { in StripLogHeaders()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dre2.cc384 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()
Dre2.h489 ANCHOR_START, // Anchor at start only enumerator
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dtester.cc402 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/
Dpcre.h438 ANCHOR_START, // Anchor at start only enumerator
Dpcre.cc320 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed, in operator ()()
418 matches = pattern.TryMatch(*str, start, ANCHOR_START, false, in GlobalReplace()