Home
last modified time | relevance | path

Searched refs:mDelegateFactory (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/accessibility/
DAccessibleDragListenerAdapterTest.kt44 private lateinit var mDelegateFactory: Function<CellLayout, DragAndDropAccessibilityDelegate> variable in com.android.launcher3.accessibility.AccessibleDragListenerAdapterTest
59 mDelegateFactory = in setup()
61 `when`(mDelegateFactory.apply(any())) in setup()
63 adapter = AccessibleDragListenerAdapter(mockViewGroup, mDelegateFactory) in setup()
83 adapter = AccessibleDragListenerAdapter(mockViewGroup, mDelegateFactory) in onDragEnd removes the accessibility delegate()
94 adapter = AccessibleDragListenerAdapter(mockViewGroup, mDelegateFactory) in onChildViewAdded sets enabled as true for childview()
104 adapter = AccessibleDragListenerAdapter(mockViewGroup, mDelegateFactory) in onChildViewRemoved sets enabled as false for childview()
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DAccessibleDragListenerAdapter.kt38 private val mDelegateFactory: Function<CellLayout, DragAndDropAccessibilityDelegate> constant in com.android.launcher3.accessibility.AccessibleDragListenerAdapter
72 if (enable) mDelegateFactory.apply(layout) else null in setEnableForLayout()