Home | History | Annotate | Download | only in camera

Lines Matching refs:mPrefLocal

34     private SharedPreferences mPrefLocal;  // per-camera preferences
121 if (mPrefLocal != null) {
122 mPrefLocal.unregisterOnSharedPreferenceChangeListener(this);
124 mPrefLocal = context.getSharedPreferences(
126 mPrefLocal.registerOnSharedPreferenceChangeListener(this);
134 return mPrefLocal;
155 if (isGlobal(key) || !mPrefLocal.contains(key)) {
158 return mPrefLocal.getString(key, defValue);
164 if (isGlobal(key) || !mPrefLocal.contains(key)) {
167 return mPrefLocal.getInt(key, defValue);
173 if (isGlobal(key) || !mPrefLocal.contains(key)) {
176 return mPrefLocal.getLong(key, defValue);
182 if (isGlobal(key) || !mPrefLocal.contains(key)) {
185 return mPrefLocal.getFloat(key, defValue);
191 if (isGlobal(key) || !mPrefLocal.contains(key)) {
194 return mPrefLocal.getBoolean(key, defValue);
206 if (mPrefLocal.contains(key)) return true;
217 mEditorLocal = mPrefLocal.edit();