Lines Matching refs:anteContextLength
73 anteContextLength = 0; in TransliterationRule()
80 anteContextLength = anteContextPos; in TransliterationRule()
83 keyLength = input.length() - anteContextLength; in TransliterationRule()
85 if (postContextPos < anteContextLength || in TransliterationRule()
91 keyLength = postContextPos - anteContextLength; in TransliterationRule()
117 if (anteContextLength > 0) { in TransliterationRule()
118 anteContext = new StringMatcher(pattern, 0, anteContextLength, in TransliterationRule()
129 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, in TransliterationRule()
138 int32_t postContextLength = pattern.length() - keyLength - anteContextLength; in TransliterationRule()
141 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), in TransliterationRule()
167 anteContextLength(other.anteContextLength), in TransliterationRule()
209 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); in getContextLength()
219 if (anteContextLength == pattern.length()) { in getIndexValue()
224 UChar32 c = pattern.char32At(anteContextLength); in getIndexValue()
291 int32_t left = anteContextLength; in masks()
292 int32_t left2 = r2.anteContextLength; in masks()
531 int32_t limit = anteContextLength + keyLength; in addSourceSetTo()
532 for (int32_t i=anteContextLength; i<limit; ) { in addSourceSetTo()