Searched refs:textChangeStart (Results 1 – 1 of 1) sorted by relevance
696 final int textChangeStart = editable.getSpanStart(mRange); in parse() local794 int textChangeStart, int textChangeEnd) { in detectSentenceBoundary() argument797 Math.max(0, textChangeStart - MAX_SENTENCE_LENGTH), in detectSentenceBoundary()798 Math.max(0, textChangeStart - 2 * MAX_SENTENCE_LENGTH)); in detectSentenceBoundary()800 Math.min(textChangeStart + 2 * MAX_SENTENCE_LENGTH, textChangeEnd), in detectSentenceBoundary()801 Math.min(textChangeStart + 3 * MAX_SENTENCE_LENGTH, sequence.length())); in detectSentenceBoundary()809 int sentenceStart = mSentenceIterator.isBoundary(textChangeStart) ? textChangeStart in detectSentenceBoundary()810 : mSentenceIterator.preceding(textChangeStart); in detectSentenceBoundary()845 int uncheckedLength = sentenceEnd - textChangeStart; in detectSentenceBoundary()847 sentenceEnd = findSeparator(sequence, textChangeStart + MAX_SENTENCE_LENGTH, in detectSentenceBoundary()[all …]