Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/harrier/src/main/java/com/android/bedstead/harrier/
DBedsteadJUnit4.java275 Map<Annotation, Integer> annotationCounts = countAnnotations(methods); in bedsteadAnnotationsSortedByMostCommon() local
276 List<Annotation> annotations = new ArrayList<>(annotationCounts.keySet()); in bedsteadAnnotationsSortedByMostCommon()
283 annotations.sort(Comparator.comparingInt(annotationCounts::get)); in bedsteadAnnotationsSortedByMostCommon()
290 Map<Annotation, Integer> annotationCounts = new HashMap<>(); in countAnnotations() local
294 annotationCounts.put( in countAnnotations()
295 annotation, annotationCounts.getOrDefault(annotation, 0) + 1); in countAnnotations()
299 return annotationCounts; in countAnnotations()