Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DInputLogicTests.java245 setBooleanPreference(Settings.PREF_SHOW_SUGGESTIONS, true, true); in testDoubleSpacePeriod()
250 testDoubleSpacePeriodWithSettings(true, Settings.PREF_SHOW_SUGGESTIONS, false); in testDoubleSpacePeriod()
252 testDoubleSpacePeriodWithSettings(true, Settings.PREF_SHOW_SUGGESTIONS, true); in testDoubleSpacePeriod()
265 testDoubleSpacePeriodWithSettings(true, Settings.PREF_SHOW_SUGGESTIONS, false, in testDoubleSpacePeriod()
268 testDoubleSpacePeriodWithSettings(false, Settings.PREF_SHOW_SUGGESTIONS, false, in testDoubleSpacePeriod()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSettingsValues.java292 .putBoolean(Settings.PREF_SHOW_SUGGESTIONS, !alwaysHide) in readSuggestionsEnabled()
295 return prefs.getBoolean(Settings.PREF_SHOW_SUGGESTIONS, true); in readSuggestionsEnabled()
DSettings.java66 public static final String PREF_SHOW_SUGGESTIONS = "show_suggestions"; field in Settings