Searched refs:SharedPreferencesCompat (Results 1 – 3 of 3) sorted by relevance
26 import com.android.common.SharedPreferencesCompat;99 SharedPreferencesCompat.apply(getSearchPreferences().edit().putBoolean(name, value)); in storeBoolean()103 SharedPreferencesCompat.apply(getSearchPreferences().edit().putInt(name, value)); in storeInt()107 SharedPreferencesCompat.apply(getSearchPreferences().edit().putLong(name, value)); in storeLong()111 SharedPreferencesCompat.apply(getSearchPreferences().edit().putString(name, value)); in storeString()115 SharedPreferencesCompat.apply(getSearchPreferences().edit().remove(name)); in removePref()157 SharedPreferencesCompat.apply(prefs.edit() in haveVoiceSearchHintsExpired()210 SharedPreferencesCompat.apply(sharedPrefEditor); in setSearchBaseDomain()
228 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time)); in getTimeBefore()242 SharedPreferencesCompat.apply( in setTriggerTimeMillis()254 SharedPreferencesCompat.apply(mStorage.edit() in setMoratoriumTimeMillis()290 SharedPreferencesCompat.apply( in setEnabledState()301 SharedPreferencesCompat.apply(mStorage.edit() in onSuccess()319 SharedPreferencesCompat.apply(editor); in onTransientError()329 SharedPreferencesCompat.apply(mStorage.edit().remove(PREFIX + "errorCount")); in resetTransientError()339 SharedPreferencesCompat.apply(mStorage.edit().putBoolean(PREFIX + "permanentError", true)); in onPermanentError()347 SharedPreferencesCompat.apply(mStorage.edit().remove(PREFIX + "permanentError")); in resetPermanentError()
28 public class SharedPreferencesCompat { class