Home
last modified time | relevance | path

Searched refs:row1 (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
DMultiLayersActivity.java36 LinearLayout row1 = new LinearLayout(this); in onCreate() local
37 row1.setOrientation(LinearLayout.HORIZONTAL); in onCreate()
38 grid.addView(row1, new LinearLayout.LayoutParams( in onCreate()
46 row1.addView(new LayerView(this, 0xffff0000), new LinearLayout.LayoutParams( in onCreate()
48 row1.addView(new LayerView(this, 0x0f00ff00), new LinearLayout.LayoutParams( in onCreate()
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
DAddColumnTest.java62 TableRow row1 = (TableRow) mTable.getChildAt(0); in testWidths() local
65 assertTrue(row1.getChildCount() < row2.getChildCount()); in testWidths()
67 for (int i = 0; i < row1.getChildCount(); i++) { 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.java251 ViewGroup row1 = mListGridLayout.getSublist(0); in testRemoveAllItems() local
252 row1.setVisibility(View.VISIBLE); in testRemoveAllItems()
261 row1.addView(item1); in testRemoveAllItems()
265 assertEquals(1, row1.getChildCount()); in testRemoveAllItems()
271 assertEquals(0, row1.getChildCount()); in testRemoveAllItems()
272 assertEquals(View.GONE, row1.getVisibility()); in testRemoveAllItems()
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
DBiDiTestGridLayoutCodeRtl.java69 Spec row1 = spec(0); in create() local
89 layout.addView(c, new GridLayout.LayoutParams(row1, col1a)); in create()
DBiDiTestGridLayoutCodeLtr.java69 Spec row1 = spec(0); in create() local
89 layout.addView(c, new GridLayout.LayoutParams(row1, col1a)); in create()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt425 val row1 = mockExpandableNotificationRow() in <lambda>() constant
426 hostView.addView(row1) in <lambda>()
430 whenever(row1.isHeadsUpState).thenReturn(true) in <lambda>()
442 assertThat(row1.viewState.alpha).isEqualTo(1f - ambientState.hideAmount) in <lambda>()
/frameworks/base/services/core/java/com/android/server/content/
DSyncManager.java2522 int row1 = row; in dumpSyncState() local
2524 table.set(row1++, BACKOFF, "D: " + (settings.delayUntil - now) / 1000); in dumpSyncState()
2526 table.set(row1++, BACKOFF, "B: " + (settings.backoffTime - now) / 1000); in dumpSyncState()
2527 table.set(row1++, BACKOFF, settings.backoffDelay / 1000); in dumpSyncState()
2531 row1 = row; in dumpSyncState()
2533 table.set(row1++, LAST_SYNC, SyncStorageEngine.SOURCES[status.lastSuccessSource] in dumpSyncState()
2535 table.set(row1++, LAST_SYNC, formatTime(status.lastSuccessTime)); in dumpSyncState()
2538 table.set(row1++, LAST_SYNC, SyncStorageEngine.SOURCES[status.lastFailureSource] in dumpSyncState()
2540 table.set(row1++, LAST_SYNC, formatTime(status.lastFailureTime)); in dumpSyncState()
2542 table.set(row1++, LAST_SYNC, status.lastFailureMesg); in dumpSyncState()