Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/view/
DViewGroupScrollCaptureTest.java287 final MockView view3 = new MockView(context, 0, 100, 200, 200); in testDispatchScrollCaptureSearch_toChildren() local
289 view3.setScrollCaptureCallbackInternalForTest(callback1); in testDispatchScrollCaptureSearch_toChildren()
290 viewGroup.addView(view3); in testDispatchScrollCaptureSearch_toChildren()
328 view3.assertDispatchScrollCaptureSearchCount(1); in testDispatchScrollCaptureSearch_toChildren()
329 view3.assertDispatchScrollCaptureSearchLastArgs( in testDispatchScrollCaptureSearch_toChildren()
332 view3.assertCreateScrollCaptureCallbackInternalCount(1); in testDispatchScrollCaptureSearch_toChildren()
380 final MockViewGroup view3 = new MockViewGroup(context, 0, 100, 200, 300); in testOnScrollCaptureSearch_withPadding() local
381 parent.addView(view3); in testOnScrollCaptureSearch_withPadding()
382 view3.setPadding(25, 25, 25, 25); in testOnScrollCaptureSearch_withPadding()
383 view3.setClipToPadding(true); in testOnScrollCaptureSearch_withPadding()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/
DGlobalActionsLayoutTest.java247 View view3 = new View(mContext, null); in testOnUpdateList_fourInList() local
256 doReturn(view3).when(mAdapter).getView(eq(2), any(), any()); in testOnUpdateList_fourInList()
268 assertEquals(view3, mLayout.mListViews.get(2)); in testOnUpdateList_fourInList()
279 View view3 = new View(mContext, null); in testOnUpdateList_fourInList_reverse() local
288 doReturn(view3).when(mAdapter).getView(eq(2), any(), any()); in testOnUpdateList_fourInList_reverse()
300 assertEquals(view3, mLayout.mListViews.get(1)); in testOnUpdateList_fourInList_reverse()
/frameworks/base/core/tests/overlaytests/device/src/com/android/overlaytest/
DOverlayBaseTest.java374 final TestTextView view3 = layout.findViewById(R.id.view_3); in testOverlayLayout() local
375 assertNotNull(view3); in testOverlayLayout()
378 assertEquals("none", view3.getCustomAttributeValue()); in testOverlayLayout()
382 assertEquals("overlaid", view3.getCustomAttributeValue()); in testOverlayLayout()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/navigationbar/buttons/
DNearestTouchFrameTest.java213 View view3 = mockViewAt(21, 20, 10, 10); in testViewMiddleChildNotAttachedCrash() local
217 mNearestTouchFrame.addView(view3); in testViewMiddleChildNotAttachedCrash()