Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowTreeServlet.java178 Key minKey = null; in doGetHandler() local
197 if (minKey == null || key.compareTo(minKey) < 0) { in doGetHandler()
198 minKey = 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.java208 Key minKey = null; in getTestPlanDispatcher() local
231 if (minKey == null || key.compareTo(minKey) < 0) { in getTestPlanDispatcher()
232 minKey = 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.java456 Key minKey = null; in getMatchingKeys() local
472 if (minKey == null || testRunKey.getKey().compareTo(minKey) < 0) in getMatchingKeys()
473 minKey = testRunKey.getKey(); in getMatchingKeys()
491 minKey.getParent(), in getMatchingKeys()
492 minKey.getKind(), in getMatchingKeys()
493 minKey.getId(), in getMatchingKeys()