Home
last modified time | relevance | path

Searched refs:out2 (Results 1 – 6 of 6) sorted by relevance

/cts/hostsidetests/monkey/src/com/android/cts/monkey/
DSeedTest.java26 String out2 = mDevice.executeShellCommand(cmd1); in testSeed() local
27 assertOutputs(out1, out2); in testSeed()
37 private void assertOutputs(String out1, String out2) { in assertOutputs() argument
39 Scanner s2 = new Scanner(out2); in assertOutputs()
/cts/tests/tests/binder_ndk/src/android/binder/cts/
DJavaClientTest.java431 boolean[] out2 = mInterface.RepeatBooleanArray(value, out1); in testArrays()
434 Assert.assertArrayEquals(value, out2); in testArrays()
439 boolean[] out2 = mInterface.RepeatBooleanArray(value, out1); in testArrays()
442 Assert.assertArrayEquals(value, out2); in testArrays()
447 byte[] out2 = mInterface.RepeatByteArray(value, out1); in testArrays()
450 Assert.assertArrayEquals(value, out2); in testArrays()
455 char[] out2 = mInterface.RepeatCharArray(value, out1); in testArrays() local
458 Assert.assertArrayEquals(value, out2); in testArrays()
463 int[] out2 = mInterface.RepeatIntArray(value, out1); in testArrays() local
466 Assert.assertArrayEquals(value, out2); in testArrays()
[all …]
/cts/tests/tests/util/src/android/util/cts/
DBase64Test.java424 OutputStream out2 = new Base64OutputStream(out, Base64.DEFAULT); in testOutputStream_ioExceptionDuringClose() local
426 out2.close(); in testOutputStream_ioExceptionDuringClose()
448 OutputStream out2 = new Base64OutputStream(out, Base64.DEFAULT); in testOutputStream_ioExceptionDuringCloseAndWrite() local
450 out2.close(); in testOutputStream_ioExceptionDuringCloseAndWrite()
480 OutputStream out2 = new Base64OutputStream(out, Base64.DEFAULT); in testOutputStream_ioExceptionDuringWrite() local
482 out2.close(); in testOutputStream_ioExceptionDuringWrite()
/cts/tests/tests/view/src/android/view/animation/cts/
DCycleInterpolatorTest.java225 final float out2 = cycleInterpolator.getInterpolation(0.125f); in testGetInterpolation() local
233 final float delta1 = out2 - out1; in testGetInterpolation()
234 final float delta2 = out3 - out2; in testGetInterpolation()
/cts/tests/tests/notificationlegacy/notificationlegacy29/src/android/app/notification/legacy29/cts/
DNotificationAssistantServiceTest.java283 NotificationListenerService.Ranking out2 = new NotificationListenerService.Ranking(); in testAdjustNotifications_rankingScoreKey() local
286 mNotificationListenerService.mRankingMap.getRanking(sbn2.getKey(), out2); in testAdjustNotifications_rankingScoreKey() local
289 int currentRank2 = out2.getRank(); in testAdjustNotifications_rankingScoreKey()
306 mNotificationListenerService.mRankingMap.getRanking(sbn2.getKey(), out2); in testAdjustNotifications_rankingScoreKey() local
310 int newRank2 = out2.getRank(); in testAdjustNotifications_rankingScoreKey()
/cts/tests/tests/binder_ndk/libbinder_ndk_test/
Dtest_native_aidl_client.cpp907 std::vector<T> out2; in testRepeat() local
909 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) << input.size(); in testRepeat()
911 EXPECT_EQ(input, out2); in testRepeat()
920 std::vector<T> out2; in testRepeat2List() local
926 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) << expected.size(); in testRepeat2List()
928 EXPECT_EQ(expected, out2); in testRepeat2List()
1056 std::optional<std::vector<std::optional<T>>> out2; in testRepeat() local
1058 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) in testRepeat()
1061 EXPECT_EQ(input, out2); in testRepeat()