Searched defs:countMap (Results 1 - 7 of 7) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DConcurrentHashMultiset.java70 private final transient ConcurrentMap<E, AtomicInteger> countMap; field in class:ConcurrentHashMultiset
76 Serialization.getFieldSetter(ConcurrentHashMultiset.class, "countMap");
131 * Creates an instance using {@code countMap} to store elements and their counts.
133 * <p>This instance will assume ownership of {@code countMap}, and other code
136 * @param countMap backing map for storing the elements in the multiset and
138 * @throws IllegalArgumentException if {@code countMap} is not empty
140 @VisibleForTesting ConcurrentHashMultiset(ConcurrentMap<E, AtomicInteger> countMap) { argument
141 checkArgument(countMap.isEmpty());
142 this.countMap = countMap;
[all...]
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DConcurrentHashMultisetBenchmark.java160 private final transient ConcurrentMap<E, Integer> countMap; field in class:ConcurrentHashMultisetBenchmark.OldConcurrentHashMultiset
170 @VisibleForTesting OldConcurrentHashMultiset(ConcurrentMap<E, Integer> countMap) { argument
171 checkArgument(countMap.isEmpty());
172 this.countMap = countMap;
185 return unbox(countMap.get(element));
202 for (Integer value : countMap.values()) {
257 if (countMap.putIfAbsent(element, occurrences) == null) {
265 if (countMap.replace(element, current, next)) {
295 if (countMap
[all...]
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 153 milliseconds