Searched defs:countMap (Results 1 - 14 of 14) 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/v8/src/inspector/
H A Dv8-console.cc365 v8::Local<v8::Map> countMap; local
366 if (!helper.privateMap("V8Console#countMap").ToLocal(&countMap)) return;
367 int32_t count = helper.getIntFromMap(countMap, identifier, 0) + 1;
368 helper.setIntOnMap(countMap, identifier, count);
/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/ ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 206 milliseconds