/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/ |
D | SettingsHelperRestoreTest.java | 62 mSettingsHelper.restoreValue( in restoreAccessibilityDisplayMagnificationNavbarEnabled_alreadyConfigured_doesNotRestore() 89 mSettingsHelper.restoreValue( in restoreAccessibilityDisplayMagnificationNavbarEnabled_notAlreadyConfigured_restores()
|
/frameworks/support/preference/src/main/java/androidx/preference/ |
D | EditTextPreference.java | 92 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 93 setText(restoreValue ? getPersistedString(mText) : (String) defaultValue); in onSetInitialValue()
|
D | TwoStatePreference.java | 189 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 190 setChecked(restoreValue ? getPersistedBoolean(mChecked) in onSetInitialValue()
|
D | ListPreference.java | 259 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 260 setValue(restoreValue ? getPersistedString(mValue) : (String) defaultValue); in onSetInitialValue()
|
D | MultiSelectListPreference.java | 210 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { in onSetInitialValue() argument 211 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<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/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsHelper.java | 125 public void restoreValue(Context context, ContentResolver cr, ContentValues contentValues, in restoreValue() method in SettingsHelper
|
D | SettingsBackupAgent.java | 657 settingsHelper.restoreValue(this, cr, contentValues, destination, key, value, in restoreSettings()
|