/frameworks/ml/nn/runtime/test/specs/V1_0/ |
D | concat_float_2.mod.py | 20 row1 = 52 variable 23 output_row = row1 + row2 25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row1, col)) # input tensor 1 32 input1_values = [x for x in range(row1 * col)] 33 input2_values = (lambda s1 = row1 * col, s2 = row2 * col:
|
D | concat_quant8_2.mod.py | 20 row1 = 52 variable 23 output_row = row1 + row2 25 input1 = Input("input1", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row1, col)) 32 input1_values = [x % 256 for x in range(row1 * col)] 33 input2_values = (lambda s1 = row1 * col, s2 = row2 * col:
|
/frameworks/ml/nn/runtime/test/specs/V1_2/ |
D | concat_float16_2.mod.py | 20 row1 = 52 variable 23 output_row = row1 + row2 25 input1 = Input("input1", "TENSOR_FLOAT16", "{%d, %d}" % (row1, col)) # input tensor 1 32 input1_values = [x for x in range(row1 * col)] 33 input2_values = (lambda s1 = row1 * col, s2 = row2 * col:
|
/frameworks/ml/nn/runtime/test/specs/V1_1/ |
D | concat_float_2_relaxed.mod.py | 20 row1 = 52 variable 23 output_row = row1 + row2 25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row1, col)) # input tensor 1 33 input1_values = [x for x in range(row1 * col)] 34 input2_values = (lambda s1 = row1 * col, s2 = row2 * col:
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | MultiLayersActivity.java | 36 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/ |
D | AddColumnTest.java | 62 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/ml/nn/runtime/test/specs/V1_3/ |
D | concat_quant8_signed.mod.py | 79 row1 = 52 variable 82 output_row = row1 + row2 84 input1 = Input("input1", "TENSOR_QUANT8_ASYMM_SIGNED", "{%d, %d}, 0.5f, -128" % (row1, col)) 91 input1_values = [x % 256 for x in range(row1 * col)] 92 input2_values = (lambda s1 = row1 * col, s2 = row2 * col:
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/ |
D | ListGridLayoutTest.java | 251 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/ |
D | BiDiTestGridLayoutCodeRtl.java | 69 Spec row1 = spec(0); in create() local 89 layout.addView(c, new GridLayout.LayoutParams(row1, col1a)); in create()
|
D | BiDiTestGridLayoutCodeLtr.java | 69 Spec row1 = spec(0); in create() local 89 layout.addView(c, new GridLayout.LayoutParams(row1, col1a)); in create()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardPINView.java | 87 mRow1 = findViewById(R.id.row1); in onFinishInflate()
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncManager.java | 2301 int row1 = row; in dumpSyncState() local 2303 table.set(row1++, BACKOFF, "D: " + (settings.delayUntil - now) / 1000); in dumpSyncState() 2305 table.set(row1++, BACKOFF, "B: " + (settings.backoffTime - now) / 1000); in dumpSyncState() 2306 table.set(row1++, BACKOFF, settings.backoffDelay / 1000); in dumpSyncState() 2310 row1 = row; in dumpSyncState() 2312 table.set(row1++, LAST_SYNC, SyncStorageEngine.SOURCES[status.lastSuccessSource] in dumpSyncState() 2314 table.set(row1++, LAST_SYNC, formatTime(status.lastSuccessTime)); in dumpSyncState() 2317 table.set(row1++, LAST_SYNC, SyncStorageEngine.SOURCES[status.lastFailureSource] in dumpSyncState() 2319 table.set(row1++, LAST_SYNC, formatTime(status.lastFailureTime)); in dumpSyncState() 2321 table.set(row1++, LAST_SYNC, status.lastFailureMesg); in dumpSyncState()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ChooserActivity.java | 3401 ViewGroup row1 = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row, 3405 parentGroup.addView(row1); 3409 Lists.newArrayList(row1, row2), getMaxTargetsPerRow());
|