Home
last modified time | relevance | path

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

/frameworks/layoutlib/bridge/src/android/util/imagepool/
DImagePoolStatsDebugImpl.java173 Multiset<String> countSet = HashMultiset.create(); in getStatistic() local
175 countSet.add(callsite); in getStatistic()
178 for (Multiset.Entry<String> entry : countSet.entrySet()) { in getStatistic()
/frameworks/base/media/java/android/media/
DAudioDeviceInfo.java480 TreeSet<Integer> countSet = new TreeSet<Integer>(); in getChannelCounts() local
484 countSet.add(isSink() ? in getChannelCounts()
491 countSet.add(Integer.bitCount(index_mask)); in getChannelCounts()
494 int[] counts = new int[countSet.size()]; in getChannelCounts()
496 for (int count : countSet) { in getChannelCounts()