HomeSort by relevance Sort by last modified time
    Searched refs:subtypePref (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AdditionalSubtypeSettings.java 144 public void onRemovePressed(SubtypePreference subtypePref);
145 public void onSavePressed(SubtypePreference subtypePref);
146 public void onAddPressed(SubtypePreference subtypePref);
407 final SubtypePreference subtypePref = (SubtypePreference)findPreference(
409 mSubtypeEnablerNotificationDialog = createDialog(subtypePref);
430 public void onRemovePressed(final SubtypePreference subtypePref) {
433 group.removePreference(subtypePref);
438 public void onSavePressed(final SubtypePreference subtypePref) {
439 final InputMethodSubtype subtype = subtypePref.getSubtype();
440 if (!subtypePref.hasBeenModified())
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeEnabler.java 291 for (Preference subtypePref: subtypePrefs) {
292 if (subtypePref instanceof CheckBoxPreference
293 && ((CheckBoxPreference)subtypePref).isChecked()) {
306 for (Preference subtypePref: subtypePrefs) {
307 if (subtypePref instanceof CheckBoxPreference) {
311 subtypePref.setEnabled(!autoSelectionEnabled);
313 ((CheckBoxPreference)subtypePref).setChecked(false);
345 for (Preference subtypePref: subtypePrefs) {
346 if (subtypePref instanceof CheckBoxPreference) {
347 CheckBoxPreference cb = (CheckBoxPreference)subtypePref;
    [all...]
InputMethodAndSubtypeUtil.java 215 CheckBoxPreference subtypePref = (CheckBoxPreference) context.findPreference(
218 if (subtypePref == null) continue;
227 if (subtypePref.isChecked()) {

Completed in 1962 milliseconds