HomeSort by relevance Sort by last modified time
    Searched refs:hashMap (Results 1 - 18 of 18) sorted by null

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/
VerifierFactory.java 20 import java.util.HashMap;
37 * The HashMap that holds the data about the already-constructed Verifier instances.
39 private static final Map<String, Verifier> hashMap = new HashMap<>();
59 Verifier v = hashMap.get(fully_qualified_classname);
62 hashMap.put(fully_qualified_classname, v);
88 final Verifier[] vs = new Verifier[hashMap.values().size()];
89 return hashMap.values().toArray(vs); // Because vs is big enough, vs is used to store the values into and returned!
  /external/guava/guava-gwt/src/com/google/common/collect/
Table_CustomFieldSerializerBase.java 35 Map<?, ?> hashMap = (Map<?, ?>) reader.readObject();
36 for (Entry<?, ?> row : hashMap.entrySet()) {
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
ImmutableMapTypeAdapterFactory.java 31 import java.util.HashMap;
35 * Serializes and deserializes {@link ImmutableMap} instances using a {@link HashMap} as an
50 final TypeAdapter<HashMap<?, ?>> hashMapAdapter =
51 (TypeAdapter<HashMap<?, ?>>) gson.getAdapter(
52 TypeToken.get(betterToken.getSupertype(Map.class).getSubtype(HashMap.class)
56 HashMap<?, ?> hashMap = Maps.newHashMap((Map<?, ?>) value);
57 hashMapAdapter.write(out, hashMap);
61 HashMap<?, ?> hashMap = hashMapAdapter.read(in)
    [all...]
  /external/slf4j/integration/lib/
slf4j-api-1.5.11.jar 
slf4j-api-1.6.99.jar 
slf4j-api-2.0.99.jar 
  /cts/tests/tests/util/src/android/util/cts/
ArrayMapTest.java 42 import java.util.HashMap;
165 private static void compareMaps(HashMap map, ArrayMap array) {
317 Log.e("test", "HashMap of " + map.size() + " entries:");
354 HashMap<ControlledHash, Integer> hashMap = new HashMap<>();
366 oldHash = hashMap.put(key, i);
372 oldHash = hashMap.remove(key);
383 dump(hashMap, arrayMap);
390 dump(hashMap, arrayMap)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
UnicodeMapTest.java 13 import java.util.HashMap;
266 HashMap hashMap = new HashMap();
288 hashMap.put(new Integer(i), value);
290 if (!hasSameValues(unicodeMap, hashMap)) {
296 private boolean hasSameValues(UnicodeMap unicodeMap, HashMap hashMap) {
299 Object hashMapValue = hashMap.get(new Integer(i));
330 logln("Comparing against HashMap");
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
UnicodeMapTest.java 12 import java.util.HashMap;
263 HashMap hashMap = new HashMap();
285 hashMap.put(new Integer(i), value);
287 if (!hasSameValues(unicodeMap, hashMap)) {
293 private boolean hasSameValues(UnicodeMap unicodeMap, HashMap hashMap) {
296 Object hashMapValue = hashMap.get(new Integer(i));
327 logln("Comparing against HashMap");
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
LanguageTest.java 4 import java.util.HashMap;
34 final HashMap<String, String> language2likely = new HashMap<String, String>();
35 final HashMap<String, String> script2likely = new HashMap<String, String>();
37 final HashMap<String, Map<Type, String>> language2script = new HashMap<String, Map<Type, String>>();
38 final HashMap<String, Map<Type, String>> language2territory = new HashMap<String, Map<Type, String>>();
39 final HashMap<String, Map<Type, String>> script2language = new HashMap<String, Map<Type, String>>()
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMapTest.java 348 Map<String, Integer> hashMap = Maps.newLinkedHashMap();
349 hashMap.put("one", 1);
350 hashMap.put("two", 2);
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableBiMapTest.java 389 Map<String, Integer> hashMap = Maps.newLinkedHashMap();
390 hashMap.put("one", 1);
391 hashMap.put("two", 2);
MapsTest.java 52 import java.util.HashMap;
82 HashMap<Integer, Integer> map = Maps.newHashMap();
91 HashMap<String, Integer> map = Maps.newHashMap(original);
100 HashMap<Object, Object> map =
117 * As of jdk7u40, HashMap has an empty-map optimization. The argument to
118 * new HashMap(int) is noted, but the initial table is a zero-length array.
129 HashMap<Integer, Void> map1 = Maps.newHashMapWithExpectedSize(size);
147 HashMap<Integer, Void> map2 = Maps.newHashMapWithExpectedSize(size);
155 private static int bucketsOf(HashMap<?, ?> hashMap) throws Exception
327 Map<String, String> hashmap = Maps.newHashMap(); local
335 Map<String, String> hashmap = Maps.newHashMap(); local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/
ScriptMetadata.java 5 import java.util.HashMap;
103 // static HashMap<String,String> NAME_TO_REGION_CODE = new HashMap<String,String>();
104 // static HashMap<String,String> NAME_TO_LANGUAGE_CODE = new HashMap<String,String>();
123 public static void addNameToCode(String type, Map<String, String> hashMap) {
127 hashMap.put(name.toUpperCase(Locale.ENGLISH), language);
241 static HashMap<String, Integer> titleToColumn = new HashMap<String, Integer>();
244 private Map<String, Info> data = new HashMap<String, Info>()
    [all...]
  /external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
NanoTest.java 55 import java.util.HashMap;
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
logback-classic-0.9.8-SNAPSHOT.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /external/conscrypt/benchmark-android/
vogar.jar 

Completed in 1556 milliseconds