HomeSort by relevance Sort by last modified time
    Searched defs:mClickedDialogEntryIndex (Results 1 - 7 of 7) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
CustomListPreference.java 79 private int mClickedDialogEntryIndex;
96 mClickedDialogEntryIndex = getCustomizablePreference()
113 mClickedDialogEntryIndex = savedInstanceState.getInt(KEY_CLICKED_ENTRY_INDEX,
114 mClickedDialogEntryIndex);
122 outState.putInt(KEY_CLICKED_ENTRY_INDEX, mClickedDialogEntryIndex);
144 mClickedDialogEntryIndex = which;
149 if (mClickedDialogEntryIndex >= 0 && preference.getEntryValues() != null) {
150 return preference.getEntryValues()[mClickedDialogEntryIndex].toString();
  /frameworks/support/v14/preference/src/android/support/v14/preference/
ListPreferenceDialogFragment.java 32 private int mClickedDialogEntryIndex;
55 mClickedDialogEntryIndex = preference.findIndexOfValue(preference.getValue());
59 mClickedDialogEntryIndex = savedInstanceState.getInt(SAVE_STATE_INDEX, 0);
68 outState.putInt(SAVE_STATE_INDEX, mClickedDialogEntryIndex);
81 builder.setSingleChoiceItems(mEntries, mClickedDialogEntryIndex,
85 mClickedDialogEntryIndex = which;
108 if (positiveResult && mClickedDialogEntryIndex >= 0) {
109 String value = mEntryValues[mClickedDialogEntryIndex].toString();
  /frameworks/support/v7/preference/src/android/support/v7/preference/
ListPreferenceDialogFragmentCompat.java 33 private int mClickedDialogEntryIndex;
57 mClickedDialogEntryIndex = preference.findIndexOfValue(preference.getValue());
61 mClickedDialogEntryIndex = savedInstanceState.getInt(SAVE_STATE_INDEX, 0);
70 outState.putInt(SAVE_STATE_INDEX, mClickedDialogEntryIndex);
99 builder.setSingleChoiceItems(mEntries, mClickedDialogEntryIndex,
103 mClickedDialogEntryIndex = which;
126 if (positiveResult && mClickedDialogEntryIndex >= 0) {
127 String value = mEntryValues[mClickedDialogEntryIndex].toString();
  /frameworks/base/core/java/android/preference/
ListPreference.java 44 private int mClickedDialogEntryIndex;
253 mClickedDialogEntryIndex = getValueIndex();
254 builder.setSingleChoiceItems(mEntries, mClickedDialogEntryIndex,
257 mClickedDialogEntryIndex = which;
280 if (positiveResult && mClickedDialogEntryIndex >= 0 && mEntryValues != null) {
281 String value = mEntryValues[mClickedDialogEntryIndex].toString();
  /packages/apps/Settings/src/com/android/settings/
CustomListPreference.java 80 private int mClickedDialogEntryIndex;
97 mClickedDialogEntryIndex = getCustomizablePreference()
114 mClickedDialogEntryIndex = savedInstanceState.getInt(KEY_CLICKED_ENTRY_INDEX,
115 mClickedDialogEntryIndex);
124 outState.putInt(KEY_CLICKED_ENTRY_INDEX, mClickedDialogEntryIndex);
146 mClickedDialogEntryIndex = which;
151 if (mClickedDialogEntryIndex >= 0 && preference.getEntryValues() != null) {
152 return preference.getEntryValues()[mClickedDialogEntryIndex].toString();
  /prebuilts/sdk/current/support/v14/preference/libs/
android-support-v14-preference.jar 
  /prebuilts/sdk/current/support/v7/preference/libs/
android-support-v7-preference.jar 

Completed in 333 milliseconds