Home
last modified time | relevance | path

Searched refs:compareTo (Results 1 – 19 of 19) sorted by relevance

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DCaseResult.java111 public int compareTo(ICaseResult another) { in compareTo() method in CaseResult
112 return getName().compareTo(another.getName()); in compareTo()
DTestResult.java271 public int compareTo(ITestResult another) { in compareTo() method in TestResult
272 return getName().compareTo(another.getName()); in compareTo()
DModuleResult.java258 public int compareTo(IModuleResult another) { in compareTo() method in ModuleResult
259 return getId().compareTo(another.getId()); in compareTo()
DCrashUtils.java132 && faultAddress.compareTo(config.minCrashAddress) < 0) { in matchSecurityCrashes()
DResultHandler.java678 Collections.sort(directoryList, (d1, d2) -> d1.getName().compareTo(d2.getName())); in getResultDirectories()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowPlanReleaseServlet.java124 public int compareTo(TestPlanRunMetadata o) { in compareTo() method in ShowPlanReleaseServlet.TestPlanRunMetadata
126 .compareTo(this.testPlanRun.getStartTimestamp()); in compareTo()
231 if (minKey == null || key.compareTo(minKey) < 0) { in getTestPlanDispatcher()
234 if (maxKey == null || key.compareTo(maxKey) > 0) { in getTestPlanDispatcher()
DShowTreeServlet.java197 if (minKey == null || key.compareTo(minKey) < 0) { in doGetHandler()
200 if (maxKey == null || key.compareTo(maxKey) > 0) { in doGetHandler()
263 new Long(t2.testRun.getStartTimestamp()).compareTo(t1.testRun.getStartTimestamp())); in doGetHandler()
DDashboardMainServlet.java153 public int compareTo(TestDisplay test) { in compareTo() method in DashboardMainServlet.TestDisplay
154 return this.testKey.getName().compareTo(test.getName()); in compareTo()
DShowGreenReleaseServlet.java153 public int compareTo(DeviceBuildInfo deviceBuildInfo) { in compareTo() method in ShowGreenReleaseServlet.DeviceBuildInfo
154 return this.deviceBuildTarget.compareTo(deviceBuildInfo.getDeviceBuildTarget()); in compareTo()
DShowProfilingOverviewServlet.java178 plots.sort((b1, b2) -> b1.getName().compareTo(b2.getName())); in doGetHandler()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DModuleDef.java220 public int compareTo(IModuleDef moduleDef) { in compareTo() method in ModuleDef
221 return getName().compareTo(moduleDef.getName()); in compareTo()
DModuleRepo.java641 return def1.getName().compareTo(def2.getName()); in compare()
/test/mlts/benchmark/src/com/android/nn/benchmark/evaluators/
DTopK.java74 return o2.second.compareTo(o1.second); in EvaluateAccuracy()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DFilterUtil.java470 if (maxKey == null || testRunKey.getKey().compareTo(maxKey) > 0) in getMatchingKeys()
472 if (minKey == null || testRunKey.getKey().compareTo(minKey) < 0) in getMatchingKeys()
DTestResults.java225 … testRuns.sort((t1, t2) -> new Long(t2.getStartTimestamp()).compareTo(t1.getStartTimestamp())); in processReport()
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/
DRandomGraphTest.java205 Duration.ofSeconds(MAX_TIME_TO_LOOK_FOR_SUITABLE_MODEL_SECONDS)).compareTo( in call()
/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DInferenceInOutSequence.java192 return index1.compareTo(index2); in readDataset()
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DCoverageEntity.java208 return isIgnored1.compareTo(isIgnored2);
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/command/
DCompatibilityConsole.java359 return o2.second.compareTo(o1.second); in splitModules()