Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/inputmethod/
DAvailableVirtualKeyboardFragment.java54 final ArrayList<InputMethodPreference> mInputMethodPreferenceList = new ArrayList<>(); field in AvailableVirtualKeyboardFragment
148 for (final InputMethodPreference p : mInputMethodPreferenceList) { in onSaveInputMethodPreference()
162 mInputMethodPreferenceList.clear(); in updateInputMethodPreferenceViews()
184 mInputMethodPreferenceList.add(pref); in updateInputMethodPreferenceViews()
187 mInputMethodPreferenceList.sort((lhs, rhs) -> lhs.compareTo(rhs, collator)); in updateInputMethodPreferenceViews()
190 final InputMethodPreference pref = mInputMethodPreferenceList.get(i); in updateInputMethodPreferenceViews()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/inputmethod/
DAvailableVirtualKeyboardFragment.java58 private final ArrayList<TVInputMethodPreference> mInputMethodPreferenceList = new ArrayList<>(); field in AvailableVirtualKeyboardFragment
91 for (final InputMethodPreference p : mInputMethodPreferenceList) { in onSaveInputMethodPreference()
145 mInputMethodPreferenceList.clear(); in updateInputMethodPreferenceViews()
161 mInputMethodPreferenceList.add(pref); in updateInputMethodPreferenceViews()
164 mInputMethodPreferenceList.sort((lhs, rhs) -> lhs.compareTo(rhs, collator)); in updateInputMethodPreferenceViews()
167 final TVInputMethodPreference pref = mInputMethodPreferenceList.get(i); in updateInputMethodPreferenceViews()
/packages/apps/Settings/tests/robotests/src/com/android/settings/inputmethod/
DAvailableVirtualKeyboardFragmentTest.java174 assertThat(mFragment.mInputMethodPreferenceList).hasSize(inputMethodNums); in updateInputMethodPreferenceViews_addExpectedInputMethodPreference()