Searched refs:anteContextLength (Results 1 – 2 of 2) sorted by relevance
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()[all …]
118 int32_t anteContextLength; variable