Searched defs:testMap (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/test/java/util/Hashtable/ |
H A D | SelfRef.java | 37 testMap(new Hashtable<Object,Object>()); 38 testMap(new HashMap<Object,Object>()); 39 testMap(new LinkedHashMap<Object,Object>()); 40 testMap(new ConcurrentHashMap<Object,Object>()); 43 private static void testMap(Map<Object,Object> m) { method in class:SelfRef
|
/openjdk7/jdk/test/java/util/Collection/ |
H A D | IteratorAtEnd.java | 55 testMap(new HashMap()); 56 testMap(new Hashtable()); 57 testMap(new LinkedHashMap()); 58 testMap(new WeakHashMap()); 59 testMap(new IdentityHashMap()); 60 testMap(new ConcurrentHashMap()); 61 testMap(new ConcurrentSkipListMap()); 62 testMap(new TreeMap()); 73 static void testMap(Map m) { method in class:IteratorAtEnd
|
H A D | MOAT.java | 90 testMap(new HashMap<Integer,Integer>()); 91 testMap(new LinkedHashMap<Integer,Integer>()); 92 testMap(new WeakHashMap<Integer,Integer>()); 93 testMap(new IdentityHashMap<Integer,Integer>()); 94 testMap(new TreeMap<Integer,Integer>()); 95 testMap(new Hashtable<Integer,Integer>()); 96 testMap(new ConcurrentHashMap<Integer,Integer>(10, 0.5f)); 97 testMap(new ConcurrentSkipListMap<Integer,Integer>()); 126 testMap(emptyMap); 148 testMap(singletonMa 801 private static void testMap(Map<Integer,Integer> m) { method in class:MOAT [all...] |
/openjdk7/jdk/test/java/util/Map/ |
H A D | Get.java | 39 testMap(new Hashtable<Character,Boolean>()); 40 testMap(new HashMap<Character,Boolean>()); 41 testMap(new IdentityHashMap<Character,Boolean>()); 42 testMap(new LinkedHashMap<Character,Boolean>()); 43 testMap(new ConcurrentHashMap<Character,Boolean>()); 44 testMap(new WeakHashMap<Character,Boolean>()); 45 testMap(new TreeMap<Character,Boolean>()); 46 testMap(new ConcurrentSkipListMap<Character,Boolean>()); 65 private static void testMap(Map<Character,Boolean> m) { method in class:Get
|
H A D | Collisions.java | 163 testMap(map, desc, keys); 171 private static <T> void testMap(Map<T, T> map, String keys_desc, T[] keys) { method in class:Collisions
|
/openjdk7/jdk/test/java/util/Collections/ |
H A D | CheckedNull.java | 53 testMap(Collections.checkedMap( 124 void testMap(final Map m) { method in class:CheckedNull
|
Completed in 1246 milliseconds