Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/
DEvilMapTest.java55 HashMap<String, String> map2 = new HashMap<String, String>(); in test_48055_HashMap() local
56 assertNull(map2.get("hi")); in test_48055_HashMap()
65 Hashtable<String, String> map2 = new Hashtable<String, String>(); in test_48055_Hashtable() local
66 assertNull(map2.get("hi")); in test_48055_Hashtable()
75 LinkedHashMap<String, String> map2 = new LinkedHashMap<String, String>(); in test_48055_LinkedHashMap() local
76 assertNull(map2.get("hi")); in test_48055_LinkedHashMap()
85 WeakHashMap<String, String> map2 = new WeakHashMap<String, String>(); in test_48055_WeakHashMap() local
86 assertNull(map2.get("hi")); in test_48055_WeakHashMap()
95 IdentityHashMap<String, String> map2 = new IdentityHashMap<String, String>(); in test_48055_IdentityHashMap() local
96 assertNull(map2.get("hi")); in test_48055_IdentityHashMap()
[all …]
DOldAndroidHashMapTest.java219 HashMap<String, String> map2 = new HashMap<String, String>(); in testEquals() local
226 map2.put("one", "1"); in testEquals()
227 map2.put("two", "2"); in testEquals()
228 map2.put("three", "3"); in testEquals()
230 assertTrue(map1.equals(map2)); in testEquals()
237 assertFalse(map2.equals(map3)); in testEquals()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DIdentityHashMap2Test.java146 AbstractMap map2 = (AbstractMap) map.clone(); in test_clone() local
147 map2.put("key", "value2"); in test_clone()
148 Collection values2 = map2.values(); in test_clone()
153 map2.clear(); in test_clone()
154 map2.put("key2", "value3"); in test_clone()
155 Set key2 = map2.keySet(); in test_clone()
287 Map map2 = new IdentityHashMap(101); in test_keySet() local
288 map2.put(new Integer(1), "1"); in test_keySet()
289 map2.put(new Integer(4), "4"); in test_keySet()
290 Iterator it2 = map2.keySet().iterator(); in test_keySet()
[all …]
DAbstractMapTest.java80 AbstractMap map2 = new HashMap(10); in test_keySet() local
81 assertSame("HashMap(10)", map2.keySet(), map2.keySet()); in test_keySet()
232 AbstractMap map2 = new HashMap(10); in test_values() local
233 assertSame("HashMap(10)", map2.values(), map2.values()); in test_values()
DHashMapTest.java214 AbstractMap map2 = (AbstractMap) map.clone(); in test_clone() local
215 map2.put("key", "value2"); in test_clone()
216 Collection values2 = map2.values(); in test_clone()
221 map2.clear(); in test_clone()
222 map2.put("key2", "value3"); in test_clone()
223 Set key2 = map2.keySet(); in test_clone()
387 Map map2 = new HashMap(101); in test_keySet() local
388 map2.put(new Integer(1), "1"); in test_keySet()
389 map2.put(new Integer(4), "4"); in test_keySet()
390 Iterator it2 = map2.keySet().iterator(); in test_keySet()
[all …]
DLinkedHashMapTest.java287 Map map2 = new LinkedHashMap(101); in test_keySet() local
288 map2.put(new Integer(1), "1"); in test_keySet()
289 map2.put(new Integer(4), "4"); in test_keySet()
290 Iterator it2 = map2.keySet().iterator(); in test_keySet()
300 assertEquals("Wrong size 2", 1, map2.size()); in test_keySet()
301 assertTrue("Wrong contents 2", map2.keySet().iterator().next().equals( in test_keySet()
386 AbstractMap map2 = (AbstractMap) map.clone(); in test_clone() local
387 map2.put("key", "value2"); in test_clone()
388 Collection values2 = map2.values(); in test_clone()
394 map2.clear(); in test_clone()
[all …]
DIdentityHashMapTest.java154 AbstractMap map2 = (AbstractMap) map.clone(); in test_clone() local
155 map2.put("key", "value2"); in test_clone()
156 Collection values2 = map2.values(); in test_clone()
161 map2.clear(); in test_clone()
162 map2.put("key2", "value3"); in test_clone()
163 Set key2 = map2.keySet(); in test_clone()
281 Map map2 = new IdentityHashMap(101); in test_keySet() local
282 map2.put(new Integer(1), "1"); in test_keySet()
283 map2.put(new Integer(4), "4"); in test_keySet()
284 Iterator it2 = map2.keySet().iterator(); in test_keySet()
[all …]
DSortedMapTestBase.java363 …SortedMap<Integer, Integer> map2 = (SortedMap<Integer, Integer>) mapClone.invoke(map, new Object[0… in testClone() local
364 assertEquals(refClone.invoke(ref, new Object[0]), map2); in testClone() local
365 map2.remove(map2.lastKey()); in testClone()
366 assertFalse(ref.equals(map2)); in testClone()
DHashtableTest.java496 Map map2 = new Hashtable(101); in test_keySet() local
497 map2.put(new Integer(1), "1"); in test_keySet()
498 map2.put(new Integer(4), "4"); in test_keySet()
499 Iterator it2 = map2.keySet().iterator(); in test_keySet()
509 assertEquals("Wrong size 2", 1, map2.size()); in test_keySet()
510 assertTrue("Wrong contents 2", map2.keySet().iterator().next().equals( in test_keySet()
DTreeMapTest.java186 AbstractMap map2 = (AbstractMap) map.clone(); in test_clone() local
187 map2.put("key", "value2"); in test_clone()
188 Collection values2 = map2.values(); in test_clone()
193 map2.clear(); in test_clone()
194 map2.put("key2", "value3"); in test_clone()
195 Set key2 = map2.keySet(); in test_clone()
/libcore/jsr166-tests/src/test/java/jsr166/
DConcurrentHashMapTest.java227 ConcurrentHashMap map2 = map5(); in testEquals() local
228 assertEquals(map1, map2); in testEquals()
229 assertEquals(map2, map1); in testEquals()
231 assertFalse(map1.equals(map2)); in testEquals()
232 assertFalse(map2.equals(map1)); in testEquals()
594 ConcurrentHashMap map2 = new ConcurrentHashMap(map5()); in testConstructor5() local
595 assertTrue(map2.equals(map1)); in testConstructor5()
596 map2.put(one, "F"); in testConstructor5()
597 assertFalse(map2.equals(map1)); in testConstructor5()
DTreeSubMapTest.java93 NavigableMap map2 = map5(); in testEquals() local
94 assertEquals(map1, map2); in testEquals()
95 assertEquals(map2, map1); in testEquals()
97 assertFalse(map1.equals(map2)); in testEquals()
98 assertFalse(map2.equals(map1)); in testEquals()
603 NavigableMap map2 = dmap5();
604 assertEquals(map1, map2);
605 assertEquals(map2, map1);
607 assertFalse(map1.equals(map2));
608 assertFalse(map2.equals(map1));
DConcurrentSkipListSubMapTest.java94 ConcurrentNavigableMap map2 = map5(); in testEquals() local
95 assertEquals(map1, map2); in testEquals()
96 assertEquals(map2, map1); in testEquals()
98 assertFalse(map1.equals(map2)); in testEquals()
99 assertFalse(map2.equals(map1)); in testEquals()
768 ConcurrentNavigableMap map2 = dmap5();
769 assertEquals(map1, map2);
770 assertEquals(map2, map1);
772 assertFalse(map1.equals(map2));
773 assertFalse(map2.equals(map1));
DTreeMapTest.java65 TreeMap map2 = new TreeMap(map); in testConstructFromSorted() local
66 assertEquals(map, map2); in testConstructFromSorted()
74 TreeMap map2 = map5(); in testEquals() local
75 assertEquals(map1, map2); in testEquals()
76 assertEquals(map2, map1); in testEquals()
78 assertFalse(map1.equals(map2)); in testEquals()
79 assertFalse(map2.equals(map1)); in testEquals()
DConcurrentSkipListMapTest.java66 ConcurrentSkipListMap map2 = new ConcurrentSkipListMap(map); in testConstructFromSorted() local
67 assertEquals(map, map2); in testConstructFromSorted()
75 ConcurrentSkipListMap map2 = map5(); in testEquals() local
76 assertEquals(map1, map2); in testEquals()
77 assertEquals(map2, map1); in testEquals()
79 assertFalse(map1.equals(map2)); in testEquals()
80 assertFalse(map2.equals(map1)); in testEquals()
/libcore/ojluni/src/test/java/util/concurrent/tck/
DConcurrentHashMapTest.java252 ConcurrentHashMap map2 = map5(); in testEquals() local
253 assertEquals(map1, map2); in testEquals()
254 assertEquals(map2, map1); in testEquals()
256 assertFalse(map1.equals(map2)); in testEquals()
257 assertFalse(map2.equals(map1)); in testEquals()
634 ConcurrentHashMap map2 = new ConcurrentHashMap(map5()); in testConstructor5() local
635 assertTrue(map2.equals(map1)); in testConstructor5()
636 map2.put(one, "F"); in testConstructor5()
637 assertFalse(map2.equals(map1)); in testConstructor5()
DTreeSubMapTest.java116 NavigableMap map2 = map5(); in testEquals() local
117 assertEquals(map1, map2); in testEquals()
118 assertEquals(map2, map1); in testEquals()
120 assertFalse(map1.equals(map2)); in testEquals()
121 assertFalse(map2.equals(map1)); in testEquals()
626 NavigableMap map2 = dmap5();
627 assertEquals(map1, map2);
628 assertEquals(map2, map1);
630 assertFalse(map1.equals(map2));
631 assertFalse(map2.equals(map1));
DConcurrentSkipListSubMapTest.java117 ConcurrentNavigableMap map2 = map5(); in testEquals() local
118 assertEquals(map1, map2); in testEquals()
119 assertEquals(map2, map1); in testEquals()
121 assertFalse(map1.equals(map2)); in testEquals()
122 assertFalse(map2.equals(map1)); in testEquals()
791 ConcurrentNavigableMap map2 = dmap5();
792 assertEquals(map1, map2);
793 assertEquals(map2, map1);
795 assertFalse(map1.equals(map2));
796 assertFalse(map2.equals(map1));
DTreeMapTest.java88 TreeMap map2 = new TreeMap(map); in testConstructFromSorted() local
89 assertEquals(map, map2); in testConstructFromSorted()
97 TreeMap map2 = map5(); in testEquals() local
98 assertEquals(map1, map2); in testEquals()
99 assertEquals(map2, map1); in testEquals()
101 assertFalse(map1.equals(map2)); in testEquals()
102 assertFalse(map2.equals(map1)); in testEquals()
DConcurrentSkipListMapTest.java89 ConcurrentSkipListMap map2 = new ConcurrentSkipListMap(map); in testConstructFromSorted() local
90 assertEquals(map, map2); in testConstructFromSorted()
98 ConcurrentSkipListMap map2 = map5(); in testEquals() local
99 assertEquals(map1, map2); in testEquals()
100 assertEquals(map2, map1); in testEquals()
102 assertFalse(map1.equals(map2)); in testEquals()
103 assertFalse(map2.equals(map1)); in testEquals()