Home | History | Annotate | Download | only in i18n

Lines Matching refs:anteContextLength

73         anteContextLength = 0;
80 anteContextLength = anteContextPos;
83 keyLength = input.length() - anteContextLength;
85 if (postContextPos < anteContextLength ||
91 keyLength = postContextPos - anteContextLength;
117 if (anteContextLength > 0) {
118 anteContext = new StringMatcher(pattern, 0, anteContextLength,
129 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength,
138 int32_t postContextLength = pattern.length() - keyLength - anteContextLength;
141 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(),
167 anteContextLength(other.anteContextLength),
203 * implemented as the anteContextLength, optionally plus one if
209 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0);
219 if (anteContextLength == pattern.length()) {
224 UChar32 c = pattern.char32At(anteContextLength);
291 int32_t left = anteContextLength;
292 int32_t left2 = r2.anteContextLength;
531 int32_t limit = anteContextLength + keyLength;
532 for (int32_t i=anteContextLength; i<limit; ) {