Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DEnumMapTest.java194 HashMap hashColorMap = null; in test_ConstructorLjava_util_Map() local
196 enumMap = new EnumMap(hashColorMap); in test_ConstructorLjava_util_Map()
202 hashColorMap = new HashMap(); in test_ConstructorLjava_util_Map()
204 enumMap = new EnumMap(hashColorMap); in test_ConstructorLjava_util_Map()
210 hashColorMap.put(Color.Green, 2); in test_ConstructorLjava_util_Map()
211 enumMap = new EnumMap(hashColorMap); in test_ConstructorLjava_util_Map()
216 hashColorMap.put(Size.Big, 3); in test_ConstructorLjava_util_Map()
218 enumMap = new EnumMap(hashColorMap); in test_ConstructorLjava_util_Map()
224 hashColorMap = new HashMap(); in test_ConstructorLjava_util_Map()
225 hashColorMap.put(new Integer(1), 1); in test_ConstructorLjava_util_Map()
[all …]