Home
last modified time | relevance | path

Searched refs:shouldOmitTypedWord (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/suggestions/
DSuggestionStripLayoutHelperTests.java27 assertFalse(message, SuggestionStripLayoutHelper.shouldOmitTypedWord( in confirmShowTypedWord()
31 assertFalse(message, SuggestionStripLayoutHelper.shouldOmitTypedWord( in confirmShowTypedWord()
35 assertFalse(message, SuggestionStripLayoutHelper.shouldOmitTypedWord( in confirmShowTypedWord()
39 assertFalse(message, SuggestionStripLayoutHelper.shouldOmitTypedWord( in confirmShowTypedWord()
55 assertFalse("typing", SuggestionStripLayoutHelper.shouldOmitTypedWord( in testshouldOmitTypedWordWhileTyping()
59 assertFalse("typing", SuggestionStripLayoutHelper.shouldOmitTypedWord( in testshouldOmitTypedWordWhileTyping()
63 assertTrue("typing", SuggestionStripLayoutHelper.shouldOmitTypedWord( in testshouldOmitTypedWordWhileTyping()
67 assertTrue("typing", SuggestionStripLayoutHelper.shouldOmitTypedWord( in testshouldOmitTypedWordWhileTyping()
74 assertFalse("gesturing", SuggestionStripLayoutHelper.shouldOmitTypedWord( in testshouldOmitTypedWordWhileGesturing()
78 assertFalse("gesturing", SuggestionStripLayoutHelper.shouldOmitTypedWord( in testshouldOmitTypedWordWhileGesturing()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
DSuggestionStripLayoutHelper.java237 final boolean shouldOmitTypedWord = shouldOmitTypedWord(suggestedWords.mInputStyle, in getPositionInSuggestionStrip()
241 settingsValues.mShouldShowLxxSuggestionUi && shouldOmitTypedWord, in getPositionInSuggestionStrip()
246 static boolean shouldOmitTypedWord(final int inputStyle, in shouldOmitTypedWord() method in SuggestionStripLayoutHelper