Home
last modified time | relevance | path

Searched refs:InputMethodPreference (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DAvailableVirtualKeyboardFragment.java33 import com.android.settingslib.inputmethod.InputMethodPreference;
43 implements InputMethodPreference.OnSavePreferenceListener {
45 private final ArrayList<InputMethodPreference> mInputMethodPreferenceList = new ArrayList<>();
70 public void onSaveInputMethodPreference(final InputMethodPreference pref) { in onSaveInputMethodPreference()
77 for (final InputMethodPreference p : mInputMethodPreferenceList) { in onSaveInputMethodPreference()
107 final InputMethodPreference pref = new InputMethodPreference( in updateInputMethodPreferenceViews()
116 final InputMethodPreference pref = mInputMethodPreferenceList.get(i); in updateInputMethodPreferenceViews()
H A DInputMethodPreferenceController.java31 import com.android.settingslib.inputmethod.InputMethodPreference;
72 final List<InputMethodPreference> preferenceList = new ArrayList<>(); in updateInputMethodPreferenceViews()
82 final InputMethodPreference pref = new InputMethodPreference( in updateInputMethodPreferenceViews()
95 final InputMethodPreference pref = preferenceList.get(i); in updateInputMethodPreferenceViews()
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/inputmethod/
H A DAvailableVirtualKeyboardFragment.java41 import com.android.settingslib.inputmethod.InputMethodPreference;
55 implements InputMethodPreference.OnSavePreferenceListener {
57 private final ArrayList<InputMethodPreference> mInputMethodPreferenceList = new ArrayList<>();
83 public void onSaveInputMethodPreference(final InputMethodPreference pref) { in onSaveInputMethodPreference()
90 for (final InputMethodPreference p : mInputMethodPreferenceList) { in onSaveInputMethodPreference()
154 final InputMethodPreference pref = new InputMethodPreference( in updateInputMethodPreferenceViews()
166 final InputMethodPreference pref = mInputMethodPreferenceList.get(i); in updateInputMethodPreferenceViews()
/aosp12/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/inputmethod/
H A DInputMethodPreferenceTest.java47 final List<InputMethodPreference> itemsInAscendingOrder = Arrays.asList( in testComparableOrdering()
63 final List<InputMethodPreference> itemsInSameOrder1 = Arrays.asList( in testComparableEquality()
72 final List<InputMethodPreference> itemsInSameOrder2 = Arrays.asList( in testComparableEquality()
84 final List<InputMethodPreference> items = Arrays.asList( in testComparableContracts()
106 private static InputMethodPreference createPreference( in createPreference()
110 return new InputMethodPreference( in createPreference()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
H A DInputMethodPreference.java53 public class InputMethodPreference extends RestrictedSwitchPreference implements OnPreferenceClickL… class
55 private static final String TAG = InputMethodPreference.class.getSimpleName();
69 void onSaveInputMethodPreference(InputMethodPreference pref); in onSaveInputMethodPreference()
92 public InputMethodPreference(final Context context, final InputMethodInfo imi, in InputMethodPreference() method in InputMethodPreference
105 InputMethodPreference(final Context context, final InputMethodInfo imi, in InputMethodPreference() method in InputMethodPreference
237 mOnSaveListener.onSaveInputMethodPreference(InputMethodPreference.this); in setCheckedInternal()
295 public int compareTo(final InputMethodPreference rhs, final Collator collator) { in compareTo()