Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubbleEducationControllerTest.kt31 import com.android.wm.shell.bubbles.ManageEducationView.Companion.PREF_MANAGED_EDUCATION
53 remove(PREF_MANAGED_EDUCATION) in setUp()
72 sharedPrefs.edit { putBoolean(PREF_MANAGED_EDUCATION, true) } in testSeenManageEducation_read()
79 assertThat(sharedPrefs.getBoolean(PREF_MANAGED_EDUCATION, false)).isTrue() in testSeenManageEducation_write()
107 sharedPrefs.edit { putBoolean(PREF_MANAGED_EDUCATION, true) } in testShouldShowManageEducation()
110 sharedPrefs.edit { remove(PREF_MANAGED_EDUCATION) } in testShouldShowManageEducation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleEducationController.kt38 get() = prefs.getBoolean(PREF_MANAGED_EDUCATION, false)
39 set(value) = prefs.edit { putBoolean(PREF_MANAGED_EDUCATION, value) } in <lambda>()
80 const val PREF_MANAGED_EDUCATION: String = "HasSeenBubblesManageOnboarding" constant
DManageEducationView.kt42 const val PREF_MANAGED_EDUCATION: String = "HasSeenBubblesManageOnboarding" constant
226 .putBoolean(PREF_MANAGED_EDUCATION, true) in updateManageEducationSeen()
DBubbleStackView.java1396 final boolean seen = getPrefBoolean(ManageEducationView.PREF_MANAGED_EDUCATION); in shouldShowManageEdu()