Searched refs:out2 (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | ScheduleCalendarTest.java | 588 Calendar out2 = getDaylightSavingsForwardDay(); in testIsInSchedule_daylightSavingsForward_startDuringChange() local 589 out2.add(Calendar.DATE, 1); in testIsInSchedule_daylightSavingsForward_startDuringChange() 590 out2.set(Calendar.HOUR_OF_DAY, 4); in testIsInSchedule_daylightSavingsForward_startDuringChange() 591 out2.set(Calendar.MINUTE, 30); in testIsInSchedule_daylightSavingsForward_startDuringChange() 592 out2.set(Calendar.SECOND, 0); in testIsInSchedule_daylightSavingsForward_startDuringChange() 593 out2.set(Calendar.MILLISECOND, 0); in testIsInSchedule_daylightSavingsForward_startDuringChange() 600 assertFalse(mScheduleCalendar.isInSchedule(out2.getTimeInMillis())); in testIsInSchedule_daylightSavingsForward_startDuringChange() 647 Calendar out2 = getDaylightSavingsForwardDay(); in testIsInSchedule_daylightSavingsForward_endDuringChange() local 648 out2.add(Calendar.DATE, 1); in testIsInSchedule_daylightSavingsForward_endDuringChange() 649 out2.set(Calendar.HOUR_OF_DAY, 3); in testIsInSchedule_daylightSavingsForward_endDuringChange() [all …]
|
/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/ |
D | ConversationStoreTest.java | 209 ConversationInfo out2 = mConversationStore.getConversation(SHORTCUT_ID_2); in testDataPersistenceAndRestoration() local 215 assertEquals(in2, out2); in testDataPersistenceAndRestoration() 239 ConversationInfo out2 = mConversationStore.getConversation(SHORTCUT_ID_2); in testDelayedDiskWrites() local 241 assertNull(out2); in testDelayedDiskWrites() 252 out2 = mConversationStore.getConversation(SHORTCUT_ID_2); in testDelayedDiskWrites() 255 assertEquals(in2, out2); in testDelayedDiskWrites() 281 ConversationInfo out2 = mConversationStore.getConversation(SHORTCUT_ID_2); in testMimicDevicePowerOff() local 283 assertEquals(in2, out2); in testMimicDevicePowerOff() 305 ConversationInfo out2 = conversationStore.getConversation(SHORTCUT_ID_2); in testBackupAndRestore() local 307 assertEquals(in2, out2); in testBackupAndRestore()
|
/frameworks/av/media/libstagefright/rtsp/ |
D | rtp_test.cpp | 57 AString out1, out2; in main() 59 encodeBase64(kPPS, sizeof(kPPS), &out2); in main() 60 printf("params=%s,%s\n", out1.c_str(), out2.c_str()); in main()
|
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/ |
D | VectorUtil.java | 46 double out2 = a[0] * b[1] - b[0] * a[1]; in cross() local 49 out[2] = out2; in cross()
|
D | Quaternion.java | 40 double out2 = a[0] * b[1] - b[0] * a[1]; in cross() local 41 return new double[]{out0, out1, out2}; in cross()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | Base64Test.java | 557 OutputStream out2 = new Base64OutputStream(out, Base64.DEFAULT); in testOutputStream_ioExceptionDuringClose() local 559 out2.close(); in testOutputStream_ioExceptionDuringClose() 581 OutputStream out2 = new Base64OutputStream(out, Base64.DEFAULT); in testOutputStream_ioExceptionDuringCloseAndWrite() local 583 out2.close(); in testOutputStream_ioExceptionDuringCloseAndWrite() 613 OutputStream out2 = new Base64OutputStream(out, Base64.DEFAULT); in testOutputStream_ioExceptionDuringWrite() local 615 out2.close(); in testOutputStream_ioExceptionDuringWrite()
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | TextUtilsTest.java | 317 String out2 = TextUtils.ellipsize(s2, p, i, kind).toString(); in testEllipsize() local 327 assertEquals("wid " + i + " pass " + j, out1, out2); in testEllipsize() 328 assertEquals("wid " + i + " pass " + j, out2, out3); in testEllipsize()
|