Searched refs:oldPreferencesLocation (Results 1 – 1 of 1) sorted by relevance
90 protected boolean removeBoolean(SharedPreferences oldPreferencesLocation, String key) { in removeBoolean() argument93 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() argument112 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() argument131 value = oldPreferencesLocation.getString(key, value); in removeString()135 oldPreferencesLocation.edit().remove(key).apply(); in removeString()