Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/
DAbstractPreferenceController.java28 final String prefKey = getPreferenceKey(); in displayPreference() local
29 if (TextUtils.isEmpty(prefKey)) { in displayPreference()
34 setVisible(screen, prefKey, true /* visible */); in displayPreference()
36 final Preference preference = screen.findPreference(prefKey); in displayPreference()
41 setVisible(screen, prefKey, false /* visible */); in displayPreference()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
DSharedPreferencesLogger.java111 final String prefKey = buildPrefKey(mTag, key); in logValue() local
112 if (!forceLog && !mPreferenceKeySet.contains(prefKey)) { in logValue()
115 mPreferenceKeySet.add(prefKey); in logValue()
157 prefKey, in logValue()
163 final String prefKey = mTag + "/" + key; in logPackageName() local
167 prefKey + ":" + value, in logPackageName()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
DInputMethodSubtypePreference.java52 final String prefKey, in InputMethodSubtypePreference() argument
58 setKey(prefKey); in InputMethodSubtypePreference()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DZenModePanel.java269 final String prefKey = prefKeyForConfirmation(getSelectedZen(Global.ZEN_MODE_OFF)); in confirmZenIntroduction() local
270 if (prefKey == null) return; in confirmZenIntroduction()
271 if (DEBUG) Log.d(TAG, "confirmZenIntroduction " + prefKey); in confirmZenIntroduction()
272 Prefs.putBoolean(mContext, prefKey, true); in confirmZenIntroduction()