Home
last modified time | relevance | path

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

/aosp12/packages/apps/LegacyCamera/src/com/android/camera/
H A DComboPreferences.java55 if (mPrefLocal != null) { in setLocalId()
58 mPrefLocal = context.getSharedPreferences( in setLocalId()
68 return mPrefLocal; in getLocal()
85 if (isGlobal(key) || !mPrefLocal.contains(key)) { in getString()
88 return mPrefLocal.getString(key, defValue); in getString()
96 return mPrefLocal.getInt(key, defValue); in getInt()
104 return mPrefLocal.getLong(key, defValue); in getLong()
112 return mPrefLocal.getFloat(key, defValue); in getFloat()
120 return mPrefLocal.getBoolean(key, defValue); in getBoolean()
130 if (mPrefLocal.contains(key)) return true; in contains()
[all …]