Home
last modified time | relevance | path

Searched refs:row2 (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
DMultiLayersActivity.java41 LinearLayout row2 = new LinearLayout(this); in onCreate() local
42 row2.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
43 grid.addView(row2, new LinearLayout.LayoutParams( in onCreate()
51 row2.addView(new LayerView(this, 0x0f0000ff), new LinearLayout.LayoutParams( in onCreate()
53 row2.addView(new LayerView(this, 0xffffff00), new LinearLayout.LayoutParams( in onCreate()
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
DAddColumnTest.java63 TableRow row2 = (TableRow) mTable.getChildAt(1); in testWidths() local
65 assertTrue(row1.getChildCount() < row2.getChildCount()); in testWidths()
68 assertEquals(row2.getChildAt(i).getWidth(), row1.getChildAt(i).getWidth()); in testWidths()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/
DListGridLayoutTest.java253 ViewGroup row2 = mListGridLayout.getSublist(1); in testRemoveAllItems() local
254 row2.setVisibility(View.VISIBLE); in testRemoveAllItems()
262 row2.addView(item2); in testRemoveAllItems()
266 assertEquals(1, row2.getChildCount()); in testRemoveAllItems()
273 assertEquals(0, row2.getChildCount()); in testRemoveAllItems()
274 assertEquals(View.GONE, row2.getVisibility()); in testRemoveAllItems()
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
DBiDiTestGridLayoutCodeRtl.java70 Spec row2 = spec(1); in create() local
95 layout.addView(c, new GridLayout.LayoutParams(row2, col1b)); in create()
DBiDiTestGridLayoutCodeLtr.java70 Spec row2 = spec(1); in create() local
95 layout.addView(c, new GridLayout.LayoutParams(row2, col1b)); in create()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt427 val row2 = mockExpandableNotificationRow() in <lambda>() constant
428 hostView.addView(row2) in <lambda>()
431 whenever(row2.isHeadsUpState).thenReturn(false) in <lambda>()
443 assertThat(row2.viewState.alpha).isEqualTo(1f - ambientState.dozeAmount) in <lambda>()