Home
last modified time | relevance | path

Searched refs:result3 (Results 1 – 5 of 5) sorted by relevance

/cts/tests/appsearch/src/com/android/cts/appsearch/external/app/
DAppSearchResultCtsTest.java43 AppSearchResult<String> result3 = in testResultEquals_identical() local
50 assertThat(result3).isEqualTo(result4); in testResultEquals_identical()
51 assertThat(result3.hashCode()).isEqualTo(result4.hashCode()); in testResultEquals_identical()
65 AppSearchResult<String> result3 = in testResultEquals_failure() local
71 assertThat(result3).isNotEqualTo(result4); in testResultEquals_failure()
72 assertThat(result3.hashCode()).isNotEqualTo(result4.hashCode()); in testResultEquals_failure()
77 assertThat(result3).isNotEqualTo(result5); in testResultEquals_failure()
78 assertThat(result3.hashCode()).isNotEqualTo(result5.hashCode()); in testResultEquals_failure()
84 assertThat(result3).isNotEqualTo(result6); in testResultEquals_failure()
85 assertThat(result3.hashCode()).isNotEqualTo(result6.hashCode()); in testResultEquals_failure()
DAppSearchSessionCtsTestBase.java8292 SearchSuggestionResult result3 = in testSearchSuggestion_differentRankingStrategy() local
8305 assertThat(suggestions).containsExactly(result2, result1, result3); in testSearchSuggestion_differentRankingStrategy()
8317 assertThat(suggestions).containsExactly(result1, result2, result3).inOrder(); in testSearchSuggestion_differentRankingStrategy()
8329 assertThat(suggestions).containsExactly(result3, result2, result1).inOrder(); in testSearchSuggestion_differentRankingStrategy()
/cts/common/device-side/bedstead/harrier/src/test/java/com/android/bedstead/harrier/
DBedsteadServiceLocatorTest.kt65 val result3 = locator.get(ExampleClass::class.java) in callGetFewTimes_executeGetDependencyOnce_dependencyInstanceIsReused() constant
69 assertThat(result1).isSameInstanceAs(result3) in callGetFewTimes_executeGetDependencyOnce_dependencyInstanceIsReused()
/cts/tests/camera/src/android/hardware/camera2/cts/
DCaptureResultTest.java356 Pair<TotalCaptureResult, Long> result3 = captureAndVerifyResult(mockCaptureCallback, in testResultTimestamps() local
361 long resultDiff = result4.second - result3.second; in testResultTimestamps()
365 validateTimestamps("Result 3", result3.first, in testResultTimestamps()
366 prevImage, result3.second); in testResultTimestamps()
376 mCollector.expectGreater("Timestamps must be increasing.", result3.second, in testResultTimestamps()
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DPkgInstallSignatureVerificationTest.java2104 String result3 = getDevice().uninstallPackage(COMPANION3_TEST_PKG); in uninstallCompanionPackages() local
2105 return Stream.of(result1, result2, result3) in uninstallCompanionPackages()