Searched refs:ANCHOR_START (Results 1 – 7 of 7) sorted by relevance
/external/icu4c/i18n/ |
D | rbt_rule.cpp | 110 flags |= ANCHOR_START; in TransliterationRule() 209 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); in getContextLength() 306 (!(flags & ANCHOR_START) && !(flags & ANCHOR_END)) || in masks() 307 ((r2.flags & ANCHOR_START) && (r2.flags & ANCHOR_END)); in masks() 402 if (((flags & ANCHOR_START) != 0) && oText != anteLimit) { in matchAndReplace() 480 if ((flags & ANCHOR_START) != 0) { in toRule()
|
D | rbt_rule.h | 136 ANCHOR_START = 1, enumerator
|
D | rbt_pars.cpp | 60 #define ANCHOR_START ((UChar)0x005E) /*^*/ macro 505 case ANCHOR_START: in parseSection()
|
/external/regex-re2/re2/ |
D | re2.cc | 288 if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) { in ConsumeN() 545 re_anchor = ANCHOR_START; in Match() 565 re_anchor = ANCHOR_START; in Match() 645 case ANCHOR_START: in Match()
|
D | re2.h | 412 ANCHOR_START, // Anchor at start only enumerator
|
/external/regex-re2/util/ |
D | pcre.h | 447 ANCHOR_START, // Anchor at start only enumerator
|
D | pcre.cc | 268 if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed, in operator ()() 366 matches = pattern.TryMatch(*str, start, ANCHOR_START, false, in GlobalReplace()
|