Home
last modified time | relevance | path

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

/cts/tests/tests/util/src/android/util/cts/
DEventLogTest.java84 Object[] longArray = new Object[1000]; in testWriteEventWithOversizeValueLimitElision() local
85 for (int i = 0; i < 1000; i++) longArray[i] = 12345; in testWriteEventWithOversizeValueLimitElision()
95 EventLog.writeEvent(ANSWER_TAG, longArray); in testWriteEventWithOversizeValueLimitElision()
/cts/tests/tests/os/src/android/os/cts/
DBundleTest.java532 long[] longArray = mBundle.getLongArray(KEY1); in testGetLongArray() local
533 assertEquals(1006, longArray[0]); in testGetLongArray()
534 assertEquals(1007, longArray[1]); in testGetLongArray()
536 longArray = mBundle.getLongArray(KEY1); in testGetLongArray()
537 assertEquals(1006, longArray[0]); in testGetLongArray()
538 assertEquals(1007, longArray[1]); in testGetLongArray()
DParcelTest.java662 long[] longArray = {111L, 11L, 1L, 0L, -1L, -11L, -111L}; in testReadValue() local
663 long[] longArray2 = new long[longArray.length]; in testReadValue()
665 p.writeValue(longArray); in testReadValue()
670 assertEquals(longArray[i], longArray2[i]); in testReadValue()
/cts/tests/tests/notification/src/android/app/notification/current/cts/
DNotificationTest.java189 final long[] longArray = { 1l, 2l, 3l };
190 mNotification.vibrate = longArray;