Home
last modified time | relevance | path

Searched refs:testResult (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wm/
DDisplayLayoutTest.java76 Rect testResult = new Rect(testInner); in testRotate() local
77 DisplayLayout.rotateBounds(testResult, testParent, 1); in testRotate()
78 assertEquals(new Rect(20, 880, 80, 960), testResult); in testRotate()
79 testResult.set(testInner); in testRotate()
80 DisplayLayout.rotateBounds(testResult, testParent, 2); in testRotate()
81 assertEquals(new Rect(880, 20, 960, 80), testResult); in testRotate()
82 testResult.set(testInner); in testRotate()
83 DisplayLayout.rotateBounds(testResult, testParent, 3); in testRotate()
84 assertEquals(new Rect(520, 40, 580, 120), testResult); in testRotate()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DMediaPlayerStressTest.java126 boolean testResult = true; in testVideoPlayback()
147 testResult = false; in testVideoPlayback()
157 assertTrue("testMediaSamples", testResult); in testVideoPlayback()
DMediaPlayerStreamingStressTest.java123 boolean testResult = true; in testVideoPlayback()
152 testResult = false; in testVideoPlayback()
162 assertTrue("testMediaSamples", testResult); in testVideoPlayback()
/frameworks/base/test-runner/src/android/test/
DAndroidTestRunner.java184 public void runTest(TestResult testResult) { in runTest() argument
185 mTestResult = testResult; in runTest()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DSubActivityTest.java38 public void testResult() throws Exception { in testResult() method in SubActivityTest
DBroadcastTest.java272 public void testResult() throws Exception { in testResult() method in BroadcastTest
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
DRunLocalBenchmarksActivity.java244 for (ArrayList<UiBenchmarkResult> testResult : detailedResults.values()) { in computeOverallScore()
245 for (UiBenchmarkResult res : testResult) { in computeOverallScore()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
DCodecTest.java814 String testResult; in playMediaSamples() local
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java2898 @NonNull NetworkAgentInfo nai, int testResult, @NonNull String redirectUrl) { in handleNetworkTested() argument
2900 nai.partialConnectivity = ((testResult & NETWORK_VALIDATION_RESULT_PARTIAL) != 0); in handleNetworkTested()
2904 final boolean valid = ((testResult & NETWORK_VALIDATION_RESULT_VALID) != 0); in handleNetworkTested()
3018 public void notifyNetworkTested(int testResult, @Nullable String redirectUrl) { in notifyNetworkTested() argument
7934 int netId, int testResult, long timestampMillis, @Nullable String redirectUrl) { in NetworkTestedResults() argument
7936 mTestResult = testResult; in NetworkTestedResults()