Home | History | Annotate | Download | only in camera

Lines Matching refs:mPrefLocal

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