Home
last modified time | relevance | path

Searched refs:splitText (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/rtt/protocol/
DRttChatMessage.java109 Iterator<String> splitText = SPLITTER.split(text).iterator(); in updateRemoteRttChatMessage() local
111 while (splitText.hasNext()) { in updateRemoteRttChatMessage()
112 String singleMessageContent = splitText.next(); in updateRemoteRttChatMessage()
119 if (splitText.hasNext()) { in updateRemoteRttChatMessage()
128 if (splitText.hasNext()) { in updateRemoteRttChatMessage()
151 if (splitText.hasNext()) { in updateRemoteRttChatMessage()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidSpellCheckerSession.java83 final CharSequence splitText = splitTexts[j]; in fixWronglyInvalidatedWordWithSingleQuote() local
84 if (TextUtils.isEmpty(splitText)) { in fixWronglyInvalidatedWordWithSingleQuote()
87 if (mSuggestionsCache.getSuggestionsFromCache(splitText.toString()) == null) { in fixWronglyInvalidatedWordWithSingleQuote()
90 final int newLength = splitText.length(); in fixWronglyInvalidatedWordWithSingleQuote()
96 Log.d(TAG, "Override and remove old span over: " + splitText + ", " in fixWronglyInvalidatedWordWithSingleQuote()
DAndroidWordLevelSpellCheckerSession.java241 final String[] splitText = text.split(Constants.REGEXP_PERIOD); in onGetSuggestionsInternal() local
243 for (final String word : splitText) { in onGetSuggestionsInternal()
253 TextUtils.join(Constants.STRING_SPACE, splitText) }); in onGetSuggestionsInternal()