Lines Matching refs:mPrefLocal
31 private SharedPreferences mPrefLocal; // per-camera preferences field in ComboPreferences
55 if (mPrefLocal != null) { in setLocalId()
56 mPrefLocal.unregisterOnSharedPreferenceChangeListener(this); in setLocalId()
58 mPrefLocal = context.getSharedPreferences( in setLocalId()
60 mPrefLocal.registerOnSharedPreferenceChangeListener(this); in setLocalId()
68 return mPrefLocal; in getLocal()
85 if (isGlobal(key) || !mPrefLocal.contains(key)) { in getString()
88 return mPrefLocal.getString(key, defValue); in getString()
93 if (isGlobal(key) || !mPrefLocal.contains(key)) { in getInt()
96 return mPrefLocal.getInt(key, defValue); in getInt()
101 if (isGlobal(key) || !mPrefLocal.contains(key)) { in getLong()
104 return mPrefLocal.getLong(key, defValue); in getLong()
109 if (isGlobal(key) || !mPrefLocal.contains(key)) { in getFloat()
112 return mPrefLocal.getFloat(key, defValue); in getFloat()
117 if (isGlobal(key) || !mPrefLocal.contains(key)) { in getBoolean()
120 return mPrefLocal.getBoolean(key, defValue); in getBoolean()
130 if (mPrefLocal.contains(key)) return true; in contains()
141 mEditorLocal = mPrefLocal.edit(); in MyEditor()