Lines Matching refs:anteContextLength
76 anteContextLength = 0; in TransliterationRule()
83 anteContextLength = anteContextPos; in TransliterationRule()
86 keyLength = input.length() - anteContextLength; in TransliterationRule()
88 if (postContextPos < anteContextLength || in TransliterationRule()
94 keyLength = postContextPos - anteContextLength; in TransliterationRule()
120 if (anteContextLength > 0) { in TransliterationRule()
121 anteContext = new StringMatcher(pattern, 0, anteContextLength, in TransliterationRule()
132 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, in TransliterationRule()
141 int32_t postContextLength = pattern.length() - keyLength - anteContextLength; in TransliterationRule()
144 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), in TransliterationRule()
170 anteContextLength(other.anteContextLength), in TransliterationRule()
212 return anteContextLength + ((flags & ANCHOR_START) ? 1 : 0); in getContextLength()
222 if (anteContextLength == pattern.length()) { in getIndexValue()
227 UChar32 c = pattern.char32At(anteContextLength); in getIndexValue()
294 int32_t left = anteContextLength; in masks()
295 int32_t left2 = r2.anteContextLength; in masks()
534 int32_t limit = anteContextLength + keyLength; in addSourceSetTo()
535 for (int32_t i=anteContextLength; i<limit; ) { in addSourceSetTo()