Searched refs:restoreValue (Results 1 – 13 of 13) 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 | 188 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 189 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()
|
D | SeekBarPreference.java | 184 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 185 setValue(restoreValue ? getPersistedInt(mSeekBarValue) 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 | 82 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 83 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 | 209 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 210 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue); in onSetInitialValue()
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsHelper.java | 112 public void restoreValue(Context context, ContentResolver cr, ContentValues contentValues, in restoreValue() method in SettingsHelper
|
D | SettingsBackupAgent.java | 626 settingsHelper.restoreValue(this, cr, contentValues, destination, key, value); in restoreSettings()
|