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.java306 setBooleanPreference(Settings.PREF_SHOW_SUGGESTIONS, true, true); in testDoubleSpacePeriod()
311 testDoubleSpacePeriodWithSettings(true, Settings.PREF_SHOW_SUGGESTIONS, false); in testDoubleSpacePeriod()
313 testDoubleSpacePeriodWithSettings(true, Settings.PREF_SHOW_SUGGESTIONS, true); in testDoubleSpacePeriod()
324 testDoubleSpacePeriodWithSettings(true, Settings.PREF_SHOW_SUGGESTIONS, false, in testDoubleSpacePeriod()
327 testDoubleSpacePeriodWithSettings(false, Settings.PREF_SHOW_SUGGESTIONS, false, in testDoubleSpacePeriod()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSettingsValues.java312 .putBoolean(Settings.PREF_SHOW_SUGGESTIONS, !alwaysHide) in readSuggestionsEnabled()
315 return prefs.getBoolean(Settings.PREF_SHOW_SUGGESTIONS, true); in readSuggestionsEnabled()
DSettings.java67 public static final String PREF_SHOW_SUGGESTIONS = "show_suggestions"; field in Settings