Home
last modified time | relevance | path

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

/cts/tests/tests/binder_ndk/src/android/binder/cts/
DJavaClientTest.java370 boolean[] out1 = new boolean[value.length]; in testArrays()
371 boolean[] out2 = mInterface.RepeatBooleanArray(value, out1); in testArrays()
373 Assert.assertArrayEquals(value, out1); in testArrays()
378 boolean[] out1 = new boolean[value.length]; in testArrays()
379 boolean[] out2 = mInterface.RepeatBooleanArray(value, out1); in testArrays()
381 Assert.assertArrayEquals(value, out1); in testArrays()
386 byte[] out1 = new byte[value.length]; in testArrays()
387 byte[] out2 = mInterface.RepeatByteArray(value, out1); in testArrays()
389 Assert.assertArrayEquals(value, out1); in testArrays()
394 char[] out1 = new char[value.length]; in testArrays() local
[all …]
/cts/suite/audio_quality/test/
DSignalProcessingInterfaceTest.cpp72 android::sp<Buffer> out1(new Buffer(8, 8, false)); in TEST_F() local
73 char* outdata1 = out1->getData(); in TEST_F()
74 for (size_t i = 0; i < out1->getSize(); i++) { in TEST_F()
79 void *outputs[4] = { &out0, &out1, &out2, &out3 }; in TEST_F()
85 ASSERT_TRUE(*(in1.get()) == *(out1.get())); in TEST_F()
180 android::sp<Buffer> out1(new Buffer(8, 8, false)); in TEST_F() local
181 char* outdata1 = out1->getData(); in TEST_F()
182 for (size_t i = 0; i < out1->getSize(); i++) { in TEST_F()
187 void *outputs[4] = { &out0, &out1, &out2, &out3 }; in TEST_F()
193 ASSERT_TRUE(*(in2.get()) == *(out1.get())); in TEST_F()
/cts/hostsidetests/monkey/src/com/android/cts/monkey/
DSeedTest.java25 String out1 = mDevice.executeShellCommand(cmd1); in testSeed() local
27 assertOutputs(out1, out2); in testSeed()
37 private void assertOutputs(String out1, String out2) { in assertOutputs() argument
38 Scanner s1 = new Scanner(out1); in assertOutputs()
/cts/tests/tests/notificationlegacy/notificationlegacy29/src/android/app/notification/legacy29/cts/
DNotificationAssistantServiceTest.java217 NotificationListenerService.Ranking out1 = new NotificationListenerService.Ranking(); in testAdjustNotifications_rankingScoreKey() local
224 mNotificationListenerService.mRankingMap.getRanking(sbn1.getKey(), out1); in testAdjustNotifications_rankingScoreKey() local
227 int currentRank1 = out1.getRank(); in testAdjustNotifications_rankingScoreKey()
244 mNotificationListenerService.mRankingMap.getRanking(sbn1.getKey(), out1); in testAdjustNotifications_rankingScoreKey() local
248 int newRank1 = out1.getRank(); in testAdjustNotifications_rankingScoreKey()
395 NotificationListenerService.Ranking out1 = new NotificationListenerService.Ranking(); in testAdjustNotification_rankingScoreKey_notAllowed() local
401 mNotificationListenerService.mRankingMap.getRanking(sbn1.getKey(), out1); in testAdjustNotification_rankingScoreKey_notAllowed() local
404 int currentRank1 = out1.getRank(); in testAdjustNotification_rankingScoreKey_notAllowed()
422 mNotificationListenerService.mRankingMap.getRanking(sbn1.getKey(), out1); in testAdjustNotification_rankingScoreKey_notAllowed() local
426 int newRank1 = out1.getRank(); in testAdjustNotification_rankingScoreKey_notAllowed()
/cts/tests/tests/binder_ndk/libbinder_ndk_test/
Dtest_native_aidl_client.cpp631 std::vector<T> out1; in testRepeat() local
632 out1.resize(input.size()); in testRepeat()
635 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) << input.size(); in testRepeat()
636 EXPECT_EQ(input, out1); in testRepeat()
645 std::vector<T> out1; in testRepeat2List() local
652 ASSERT_OK((i.get()->*repeatMethod)(input, &out1, &out2)) << expected.size(); in testRepeat2List()
653 EXPECT_EQ(expected, out1); in testRepeat2List()
760 std::optional<std::vector<std::optional<T>>> out1; in testRepeat() local
762 out1 = std::vector<std::optional<T>>{}; in testRepeat()
763 out1->resize(input->size()); in testRepeat()
[all …]
/cts/tests/tests/view/src/android/view/animation/cts/
DCycleInterpolatorTest.java213 final float out1 = cycleInterpolator.getInterpolation(0.0f); in testGetInterpolation() local
222 final float delta1 = out2 - out1; in testGetInterpolation()
230 assertEquals(out1, out3, ALPHA_DELTA); in testGetInterpolation()