Home
last modified time | relevance | path

Searched refs:OnReorderingAllowedListener (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/
DVisualStabilityProvider.kt11 private val allListeners = ListenerSet<OnReorderingAllowedListener>() in <lambda>()
14 private val temporaryListeners = ArraySet<OnReorderingAllowedListener>() in <lambda>()
36 fun addPersistentReorderingAllowedListener(listener: OnReorderingAllowedListener) { in <lambda>()
42 fun addTemporaryReorderingAllowedListener(listener: OnReorderingAllowedListener) { in <lambda>()
51 fun removeReorderingAllowedListener(listener: OnReorderingAllowedListener) { in <lambda>()
57 fun interface OnReorderingAllowedListener { in interface() interface
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/provider/
DVisualStabilityProviderTest.kt35 private val listener: OnReorderingAllowedListener = mock()
120 val selfRemovingListener = spy(object : OnReorderingAllowedListener { in testPersistentListenerCanRemoveSelf()
137 val selfAddingListener = spy(object : OnReorderingAllowedListener { in testTemporaryListenerCanReAddSelf()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpManagerPhone.java41 import com.android.systemui.statusbar.notification.collection.provider.OnReorderingAllowedListener;
383 private final OnReorderingAllowedListener mOnReorderingAllowedListener = () -> {
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/controller/
DMediaCarouselController.kt86 import com.android.systemui.statusbar.notification.collection.provider.OnReorderingAllowedListener in <lambda>()
353 val visualStabilityCallback = OnReorderingAllowedListener { in <lambda>()
407 val visualStabilityCallback = OnReorderingAllowedListener { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/controller/
DMediaCarouselControllerTest.kt63 import com.android.systemui.statusbar.notification.collection.provider.OnReorderingAllowedListener
139 @Captor lateinit var visualStabilityCallback: ArgumentCaptor<OnReorderingAllowedListener>