Searched refs:longArray (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/util/src/android/util/cts/ |
D | EventLogTest.java | 64 Object[] longArray = new Object[1000]; in testWriteEventWithOversizeValue() local 65 for (int i = 0; i < 1000; i++) longArray[i] = 12345; in testWriteEventWithOversizeValue() 75 EventLog.writeEvent(ANSWER_TAG, longArray); in testWriteEventWithOversizeValue()
|
/cts/tests/app/src/android/app/cts/ |
D | NotificationTest.java | 87 final long[] longArray = { 1l, 2l, 3l }; 88 mNotification.vibrate = longArray;
|
/cts/tests/tests/os/src/android/os/cts/ |
D | BundleTest.java | 461 long[] longArray = mBundle.getLongArray(KEY); in testGetLongArray() local 462 assertEquals(1006, longArray[0]); in testGetLongArray() 463 assertEquals(1007, longArray[1]); in testGetLongArray() 465 longArray = mBundle.getLongArray(KEY); in testGetLongArray() 466 assertEquals(1006, longArray[0]); in testGetLongArray() 467 assertEquals(1007, longArray[1]); in testGetLongArray()
|
D | ParcelTest.java | 492 long[] longArray = {111L, 11L, 1L, 0L, -1L, -11L, -111L}; in testReadValue() local 493 long[] longArray2 = new long[longArray.length]; in testReadValue() 495 p.writeValue(longArray); in testReadValue() 500 assertEquals(longArray[i], longArray2[i]); in testReadValue()
|