/tools/tradefederation/core/src/com/android/tradefed/testtype/metricregression/ |
D | DetectRegression.java | 122 Metrics after = in run() local 125 before.crossValidate(after); in run() 126 runRegressionDetection(before, after); in run() 139 void runRegressionDetection(Metrics before, Metrics after) { in runRegressionDetection() argument 141 Sets.intersection(before.getRunMetrics().keySet(), after.getRunMetrics().keySet()); in runRegressionDetection() 145 List<Double> afterMetrics = after.getRunMetrics().get(name); in runRegressionDetection() 153 before.getTestMetrics().keySet(), after.getTestMetrics().keySet()); in runRegressionDetection() 157 List<Double> afterMetrics = after.getTestMetrics().get(id); in runRegressionDetection() 163 logResult(before, after, runMetricsResult, testMetricsResult); in runRegressionDetection() 170 Metrics after, in logResult() argument [all …]
|
D | Metrics.java | 138 public void crossValidate(Metrics after) { in crossValidate() argument 139 if (mNumTests != after.mNumTests) { in crossValidate() 143 mNumTests, after.mNumTests)); in crossValidate() 147 if (!after.mRunMetrics.containsKey(name)) { in crossValidate() 152 for (String name : after.mRunMetrics.keySet()) { in crossValidate() 159 if (!after.mTestMetrics.containsKey(id)) { in crossValidate() 167 for (Pair<TestDescription, String> id : after.mTestMetrics.keySet()) { in crossValidate()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/metricregression/ |
D | DetectRegressionTest.java | 131 Metrics after = new Metrics(false); in testRunRegressionDetection() local 133 .forEach(e -> after.addRunMetric("metric-1", e)); in testRunRegressionDetection() 135 .forEach(e -> after.addRunMetric("metric-2", e)); in testRunRegressionDetection() 137 .forEach(e -> after.addRunMetric("metric-3", e)); in testRunRegressionDetection() 139 .forEach(e -> after.addTestMetric(id1, "metric-4", e)); in testRunRegressionDetection() 141 .forEach(e -> after.addTestMetric(id2, "metric-5", e)); in testRunRegressionDetection() 143 .forEach(e -> after.addTestMetric(id2, "metric-6", e)); in testRunRegressionDetection() 148 detector.runRegressionDetection(before, after); in testRunRegressionDetection() 152 eq(after), in testRunRegressionDetection()
|
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/ |
D | ExtraFieldTest.java | 225 StoredEntry after = zf.get("after"); in addExtraFieldToExistingEntry() local 226 assertNotNull(after); in addExtraFieldToExistingEntry() 227 assertArrayEquals(new byte[] { 6, 7, 8 }, after.read()); in addExtraFieldToExistingEntry() 273 StoredEntry after = zf.get("after"); in removeExtraFieldFromExistingEntry() local 274 assertNotNull(after); in removeExtraFieldFromExistingEntry() 275 assertArrayEquals(new byte[] { 6, 7, 8 }, after.read()); in removeExtraFieldFromExistingEntry() 321 StoredEntry after = zf.get("after"); in updateExtraFieldOfExistingEntry() local 322 assertNotNull(after); in updateExtraFieldOfExistingEntry() 323 assertArrayEquals(new byte[] { 6, 7, 8 }, after.read()); in updateExtraFieldOfExistingEntry()
|
D | ZFileSortTest.java | 54 public final void after() throws Exception { in after() method in ZFileSortTest
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | LogcatItem.java | 166 Date stop = logcat.getStopTime().after(getStopTime()) ? in merge() 168 Date overlapStart = logcat.getStartTime().after(getStartTime()) ? in merge() 177 if (eventTime.after(overlapStart) && eventTime.before(overlapStop) && in merge() 187 if (eventTime.after(overlapStart) && eventTime.before(overlapStop)) { in merge()
|
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/ |
D | AVDTP_PTS_INSTUCTIONS | 19 #Before test run this and set it to false after the test is done.
|
D | GAP_PTS_INSTRUCTIONS | 139 Note: Start the connection fast after PTS interaction 146 Note: Start the connection fast after PTS interaction 198 Note: Do not accept pairing on phone until after you accept it on PTS 228 Note: Do not accept pairing on phone until after you accept it on PTS 275 Do not accept pairing on phone until after you accept it on PTS 311 Note: Do not accept pairing on phone until after you accept it on PTS
|
D | GATT_PTS_INSTRUCTIONS | 795 [PTS Interaction] Enter handle of uuid 2a30 after running the command gatts_list_all_uuids
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | RetentionFileSaver.java | 62 return new Date().after(retentionDate); in shouldDelete()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | DeviceJUnit4ClassRunner.java | 195 protected void after() { in after() method in DeviceJUnit4ClassRunner.TestMetrics 257 protected void after() { in after() method in DeviceJUnit4ClassRunner.TestLogData
|
/tools/test/connectivity/acts/tests/google/tel/config/ |
D | README.md | 5 …il** - The default behavior of telephony tests is to capture a bug report after each failed test. … 8 …med in the event of a test failure. The test will be reported as a 'pass' after the first successf…
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_verify.txt | 26 the APK as the very last parameter, after all options.
|
D | help_sign.txt | 13 specifying the APK as the very last parameter, after all
|
/tools/test/connectivity/acts/tests/google/net/arduino/disconnect_wifi/ |
D | disconnect_wifi.ino | 4 delay(1000); // wait for a second to read from serial port after flashing
|
/tools/test/connectivity/acts/tests/google/net/arduino/connect_wifi/ |
D | connect_wifi.ino | 14 delay(1000); // wait for a second to read from serial port after flashing
|
/tools/metalava/ |
D | build.gradle | 93 // The distDir is conveniently named after the build ID.
|
/tools/apksig/ |
D | README.md | 32 which need to perform signing while building an APK, instead of after. For simpler use cases
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | FileUseMap.java | 549 FileUseMapEntry<?> after(@Nonnull FileUseMapEntry<?> entry) { in after() method in FileUseMap
|
D | ZFile.java | 638 found = map.after(found); in readData()
|
/tools/test/connectivity/acts/ |
D | README.md | 134 test case names within the class. More on this is discussed after the
|
/tools/repohooks/ |
D | README.md | 24 skip **all** checks and not just specific ones. It should be used only after
|
/tools/repohooks/tools/ |
D | pylintrc | 233 indent-after-paren=4
|
/tools/tradefederation/core/atest/ |
D | README.md | 216 Many tests, e.g. CTS, cleanup the device after the test is run, so trying
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 431 appear immediately after an IPv6 header only. Nonetheless, it is 687 If, after processing a Routing header of a received packet, an 1351 A node must be able to accept a fragmented packet that, after
|