Home
last modified time | relevance | path

Searched refs:oldPreferencesLocation (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/settings/
DSettingsUpgrader.java90 protected boolean removeBoolean(SharedPreferences oldPreferencesLocation, String key) { in removeBoolean() argument
93 value = oldPreferencesLocation.getBoolean(key, value); in removeBoolean()
97 oldPreferencesLocation.edit().remove(key).apply(); in removeBoolean()
109 protected int removeInteger(SharedPreferences oldPreferencesLocation, String key) { in removeInteger() argument
112 value = oldPreferencesLocation.getInt(key, value); in removeInteger()
116 oldPreferencesLocation.edit().remove(key).apply(); in removeInteger()
128 protected String removeString(SharedPreferences oldPreferencesLocation, String key) { in removeString() argument
131 value = oldPreferencesLocation.getString(key, value); in removeString()
135 oldPreferencesLocation.edit().remove(key).apply(); in removeString()