HomeSort by relevance Sort by last modified time
    Searched full:restorevalue (Results 1 - 21 of 21) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
VersionedPrefs.java 209 final Object restoreValue = getRestoreValue(key, value);
211 if (restoreValue instanceof Boolean) {
212 getEditor().putBoolean(key, (Boolean) restoreValue);
214 } else if (restoreValue instanceof Float) {
215 getEditor().putFloat(key, (Float) restoreValue);
217 } else if (restoreValue instanceof Integer) {
218 getEditor().putInt(key, (Integer) restoreValue);
220 } else if (restoreValue instanceof Long) {
221 getEditor().putLong(key, (Long) restoreValue);
223 } else if (restoreValue instanceof String)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 105 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
108 if (!restoreValue) {
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
MyPreference.java 84 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
85 if (restoreValue) {
  /external/chromium_org/v8/src/arm/
lithium-gap-resolver-arm.h 63 void RestoreValue();
lithium-gap-resolver-arm.cc 57 RestoreValue();
185 void LGapResolver::RestoreValue() {
  /external/chromium_org/v8/src/mips/
lithium-gap-resolver-mips.h 63 void RestoreValue();
lithium-gap-resolver-mips.cc 58 RestoreValue();
186 void LGapResolver::RestoreValue() {
  /external/v8/src/arm/
lithium-gap-resolver-arm.h 63 void RestoreValue();
lithium-gap-resolver-arm.cc 57 RestoreValue();
185 void LGapResolver::RestoreValue() {
  /external/v8/src/mips/
lithium-gap-resolver-mips.h 63 void RestoreValue();
lithium-gap-resolver-mips.cc 58 RestoreValue();
186 void LGapResolver::RestoreValue() {
  /frameworks/base/core/java/android/preference/
EditTextPreference.java 153 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
154 setText(restoreValue ? getPersistedString(mText) : (String) defaultValue);
SeekBarPreference.java 74 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
75 setProgress(restoreValue ? getPersistedInt(mProgress)
MultiSelectListPreference.java 223 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
224 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue);
TwoStatePreference.java 190 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
191 setChecked(restoreValue ? getPersistedBoolean(mChecked)
ListPreference.java 285 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
286 setValue(restoreValue ? getPersistedString(mValue) : (String) defaultValue);
MultiCheckPreference.java 268 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
  /packages/apps/Settings/src/com/android/settings/accessibility/
ListDialogPreference.java 221 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
222 setValue(restoreValue ? getPersistedInt(mValue) : (Integer) defaultValue);
  /packages/services/Telephony/src/com/android/phone/
EditPhoneNumberPreference.java 389 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
390 setValueFromString(restoreValue ? getPersistedString(getStringValue())
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsHelper.java 57 public boolean restoreValue(String name, String value) {
SettingsBackupAgent.java 704 if (settingsHelper.restoreValue(key, value)) {
    [all...]

Completed in 1539 milliseconds