Searched refs:out2 (Results 1 – 6 of 6) sorted by relevance
/cts/tests/tests/binder_ndk/src/android/binder/cts/ |
D | JavaClientTest.java | 371 boolean[] out2 = mInterface.RepeatBooleanArray(value, out1); in testArrays() 374 Assert.assertArrayEquals(value, out2); in testArrays() 379 boolean[] out2 = mInterface.RepeatBooleanArray(value, out1); in testArrays() 382 Assert.assertArrayEquals(value, out2); in testArrays() 387 byte[] out2 = mInterface.RepeatByteArray(value, out1); in testArrays() 390 Assert.assertArrayEquals(value, out2); in testArrays() 395 char[] out2 = mInterface.RepeatCharArray(value, out1); in testArrays() local 398 Assert.assertArrayEquals(value, out2); in testArrays() 403 int[] out2 = mInterface.RepeatIntArray(value, out1); in testArrays() local 406 Assert.assertArrayEquals(value, out2); in testArrays() [all …]
|
/cts/hostsidetests/monkey/src/com/android/cts/monkey/ |
D | SeedTest.java | 26 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/suite/audio_quality/test/ |
D | SignalProcessingInterfaceTest.cpp | 77 TaskCase::Value out2(-1.0f); in TEST_F() local 79 void *outputs[4] = { &out0, &out1, &out2, &out3 }; in TEST_F() 86 ASSERT_TRUE(in2 == out2); in TEST_F() 185 TaskCase::Value out2((int64_t)1000); in TEST_F() local 187 void *outputs[4] = { &out0, &out1, &out2, &out3 }; in TEST_F() 194 ASSERT_TRUE(in4 == out2); in TEST_F()
|
/cts/tests/tests/notificationlegacy/notificationlegacy29/src/android/app/notification/legacy29/cts/ |
D | NotificationAssistantServiceTest.java | 222 NotificationListenerService.Ranking out2 = new NotificationListenerService.Ranking(); in testAdjustNotifications_rankingScoreKey() local 225 mNotificationListenerService.mRankingMap.getRanking(sbn2.getKey(), out2); in testAdjustNotifications_rankingScoreKey() local 228 int currentRank2 = out2.getRank(); in testAdjustNotifications_rankingScoreKey() 245 mNotificationListenerService.mRankingMap.getRanking(sbn2.getKey(), out2); in testAdjustNotifications_rankingScoreKey() local 249 int newRank2 = out2.getRank(); in testAdjustNotifications_rankingScoreKey() 399 NotificationListenerService.Ranking out2 = new NotificationListenerService.Ranking(); in testAdjustNotification_rankingScoreKey_notAllowed() local 402 mNotificationListenerService.mRankingMap.getRanking(sbn2.getKey(), out2); in testAdjustNotification_rankingScoreKey_notAllowed() local 405 int currentRank2 = out2.getRank(); in testAdjustNotification_rankingScoreKey_notAllowed() 423 mNotificationListenerService.mRankingMap.getRanking(sbn2.getKey(), out2); in testAdjustNotification_rankingScoreKey_notAllowed() local 427 int newRank2 = out2.getRank(); in testAdjustNotification_rankingScoreKey_notAllowed()
|
/cts/tests/tests/binder_ndk/libbinder_ndk_test/ |
D | test_native_aidl_client.cpp | 633 std::vector<T> out2; in testRepeat() local 635 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) << input.size(); in testRepeat() 637 EXPECT_EQ(input, out2); in testRepeat() 646 std::vector<T> out2; in testRepeat2List() local 652 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) << expected.size(); in testRepeat2List() 654 EXPECT_EQ(expected, out2); in testRepeat2List() 765 std::optional<std::vector<std::optional<T>>> out2; in testRepeat() local 767 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) in testRepeat() 770 EXPECT_EQ(input, out2); in testRepeat()
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
D | CycleInterpolatorTest.java | 214 final float out2 = cycleInterpolator.getInterpolation(0.125f); in testGetInterpolation() local 222 final float delta1 = out2 - out1; in testGetInterpolation() 223 final float delta2 = out3 - out2; in testGetInterpolation()
|