Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/common/ui/view/
H A DLongPressHandlingViewInteractionHandlerTest.kt48 @Mock private lateinit var onLongPressDetected: (Int, Int) -> Unit
68 onLongPressDetected = onLongPressDetected,
89 verify(onLongPressDetected).invoke(downX, downY)
104 verify(onLongPressDetected, never()).invoke(any(), any())
119 verify(onLongPressDetected, never()).invoke(any(), any())
136 verify(onLongPressDetected, never()).invoke(any(), any())
154 verify(onLongPressDetected, never()).invoke(any(), any())
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/view/
H A DLongPressHandlingView.kt46 fun onLongPressDetected( regex
72 onLongPressDetected = { x, y ->
73 listener?.onLongPressDetected(
H A DLongPressHandlingViewInteractionHandler.kt33 private val onLongPressDetected: (x: Int, y: Int) -> Unit,
118 onLongPressDetected(x, y)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
H A DKeyguardLongPressViewBinder.kt48 override fun onLongPressDetected(view: View, x: Int, y: Int) {