HomeSort by relevance Sort by last modified time
    Searched refs:mPrefLocal (Results 1 - 2 of 2) sorted by null

  /packages/apps/LegacyCamera/src/com/android/camera/
ComboPreferences.java 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)
    [all...]
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 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)
    [all...]

Completed in 4173 milliseconds