Searched refs:restoreValue (Results 1 – 12 of 12) sorted by relevance
/frameworks/support/v7/preference/src/android/support/v7/preference/ |
D | EditTextPreference.java | 91 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 92 setText(restoreValue ? getPersistedString(mText) : (String) defaultValue); in onSetInitialValue()
|
D | TwoStatePreference.java | 185 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 186 setChecked(restoreValue ? getPersistedBoolean(mChecked) in onSetInitialValue()
|
D | ListPreference.java | 258 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 259 setValue(restoreValue ? getPersistedString(mValue) : (String) defaultValue); in onSetInitialValue()
|
/frameworks/base/core/java/android/preference/ |
D | TwoStatePreference.java | 187 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 188 setChecked(restoreValue ? getPersistedBoolean(mChecked) in onSetInitialValue()
|
D | EditTextPreference.java | 159 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 160 setText(restoreValue ? getPersistedString(mText) : (String) defaultValue); in onSetInitialValue()
|
D | SeekBarPreference.java | 87 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 88 setProgress(restoreValue ? getPersistedInt(mProgress) in onSetInitialValue()
|
D | MultiSelectListPreference.java | 234 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 235 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue); in onSetInitialValue()
|
D | ListPreference.java | 294 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 295 setValue(restoreValue ? getPersistedString(mValue) : (String) defaultValue); in onSetInitialValue()
|
D | MultiCheckPreference.java | 278 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument
|
/frameworks/support/v14/preference/src/android/support/v14/preference/ |
D | MultiSelectListPreference.java | 262 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 263 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue); in onSetInitialValue()
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsHelper.java | 111 public void restoreValue(Context context, ContentResolver cr, ContentValues contentValues, in restoreValue() method in SettingsHelper
|
D | SettingsBackupAgent.java | 990 settingsHelper.restoreValue(this, cr, contentValues, destination, key, value); in restoreSettings()
|