Home
last modified time | relevance | path

Searched refs:maxKey (Results 1 – 3 of 3) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowTreeServlet.java179 Key maxKey = null; in doGetHandler() local
200 if (maxKey == null || key.compareTo(maxKey) > 0) { in doGetHandler()
201 maxKey = key; in doGetHandler()
209 if (minKey != null && maxKey != null) { in doGetHandler()
212 testKey, TestRunEntity.KIND, minKey.getId(), maxKey.getId()); in doGetHandler()
242 testKey, TestRunEntity.KIND, minKey.getId(), maxKey.getId()); in doGetHandler()
DShowPlanReleaseServlet.java209 Key maxKey = null; in getTestPlanDispatcher() local
234 if (maxKey == null || key.compareTo(maxKey) > 0) { in getTestPlanDispatcher()
235 maxKey = key; in getTestPlanDispatcher()
238 if (minKey != null && maxKey != null) { in getTestPlanDispatcher()
241 testPlanKey, TestPlanRunEntity.KIND, minKey.getId(), maxKey.getId()); in getTestPlanDispatcher()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DFilterUtil.java457 Key maxKey = null; in getMatchingKeys() local
470 if (maxKey == null || testRunKey.getKey().compareTo(maxKey) > 0) in getMatchingKeys()
471 maxKey = testRunKey.getKey(); in getMatchingKeys()
494 maxKey.getId())); in getMatchingKeys()