Home
last modified time | relevance | path

Searched defs:map (Results 1 – 25 of 52) sorted by relevance

123

/libcore/luni/src/test/java/libcore/java/util/
DOldAndroidHashMapTest.java29 private void addItems(HashMap<String, Integer> map) { in addItems()
44 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testAdd() local
49 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testClear() local
57 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testRemove() local
65 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testManipulate() local
113 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testKeyIterator() local
148 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testValueIterator() local
183 HashMap<String, Integer> map = new HashMap<String, Integer>(); in testEntryIterator() local
DTreeMapTest.java37 TreeMap<String, String> map = new TreeMap<String, String>(); in testEntrySetSetValue() local
62 TreeMap<String, String> map = new TreeMap<String, String>(); in testSubMapEntrySetSetValue() local
91 TreeMap<String, String> map = new TreeMap<String, String>(); in testExceptionsOnSetValue() local
103 TreeMap<String, String> map = new TreeMap<String, String>(); in testExceptionsOnSubMapSetValue() local
116 private void assertAllEntryMethodsReturnImmutableEntries(NavigableMap<String, String> map) { in assertAllEntryMethodsReturnImmutableEntries() argument
138 Map<String, String> map = new TreeMap<String, String>(); in testConcurrentModificationDetection() local
155 Map<String, String> map = new TreeMap<String, String>(); in testIteratorRemoves() local
172 Map<String,String> map = new TreeMap<String, String>(String.CASE_INSENSITIVE_ORDER); in testEntrySetUsesComparatorOnly() local
194 TreeMap<String,String> map = new TreeMap<String, String>(); in testNullsWithNaturalOrder() local
215 Map<Object, Object> map = new TreeMap<Object, Object>(); in testClassCastExceptions() local
[all …]
DOldLinkedHashMapTest.java29 LinkedHashMap map = new LinkedHashMap<String, String>(10, 0.75f, true); in testLinkedHashMap() local
DOldTreeMapTest.java241 TreeMap<Integer, Double> map = new TreeMap<Integer, Double>( in test_headMapLjava_lang_Object() local
421 SortedMap<String, String> map = new TreeMap<String, String>(); in test_subMapLjava_lang_ObjectLjava_lang_Object() local
/libcore/luni/src/main/java/java/sql/
DArray.java70 public Object getArray(long index, int count, Map<String, Class<?>> map) in getArray()
83 public Object getArray(Map<String, Class<?>> map) throws SQLException; in getArray()
150 Map<String, Class<?>> map) throws SQLException; in getResultSet()
163 public ResultSet getResultSet(Map<String, Class<?>> map) in getResultSet()
DRef.java69 public Object getObject(Map<String, Class<?>> map) throws SQLException; in getObject()
/libcore/support/src/test/java/tests/support/
DSupport_MapTest2.java25 Map<String, String> map; field in Support_MapTest2
DSupport_UnmodifiableMapTest.java28 Map<String, Integer> map; field in Support_UnmodifiableMapTest
/libcore/luni/src/test/java/tests/api/java/util/
DWeakHashMapTest.java126 WeakHashMap map = new WeakHashMap(mockMap); in test_ConstructorLjava_util_Map() local
241 WeakHashMap map = new WeakHashMap(); in test_putLjava_lang_ObjectLjava_lang_Object() local
255 WeakHashMap map = new WeakHashMap(); in test_putAllLjava_util_Map() local
DHashMapTest.java146 HashMap map = new HashMap(); in test_clone() local
268 HashMap map = new HashMap(); in test_getLjava_lang_Object() local
304 Map map = new HashMap(101); in test_keySet() local
504 HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(10); in test_Map_Entry_hashCode() local
DIdentityHashMapTest.java140 IdentityHashMap map = new IdentityHashMap(); in test_clone() local
257 Map map = new IdentityHashMap(101); in test_keySet() local
442 IdentityHashMap<String, String> map = new IdentityHashMap<String, String>(); in test_Serialization() local
DAbstractMapTest.java168 private Map map = new HashMap(); in test_clone() field in AbstractMapTest.MyMap
191 MyMap map = new MyMap(); in test_clone() local
DHashtableTest.java120 Map map = new TreeMap(); in test_ConstructorLjava_util_Map() local
143 Map<String, Void> map = Collections.singletonMap("Dog", null); in test_ConversionConstructorNullValue() local
478 Map map = new Hashtable(101); in test_keySet() local
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DASN1Choice.java236 TreeMap<BigInteger, BigInteger> map = new TreeMap<BigInteger, BigInteger>(); in ASN1Choice() local
281 private void addIdentifier(TreeMap<BigInteger, BigInteger> map, int identifier, int index){ in addIdentifier() argument
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DsetNamedItemNS01.java83 NamedNodeMap map; in runTest() local
/libcore/luni/src/main/java/libcore/io/
DBase64.java128 private static final byte[] map = new byte[] field in Base64
/libcore/luni/src/main/java/java/util/
DIdentityHashMap.java86 private final IdentityHashMap<K,V> map; field in IdentityHashMap.IdentityHashMapEntry
88 IdentityHashMapEntry(IdentityHashMap<K,V> map, K theKey, V theValue) { in IdentityHashMapEntry()
DTreeSet.java43 TreeSet(NavigableMap<E, Object> map) { in TreeSet()
489 TreeMap<E, Object> map = new TreeMap<E, Object>( in readObject() local
DMap.java211 public void putAll(Map<? extends K,? extends V> map); in putAll()
DAbstractMap.java247 Map<?, ?> map = (Map<?, ?>) object; in equals() local
379 public void putAll(Map<? extends K, ? extends V> map) { in putAll()
/libcore/luni/src/main/java/libcore/util/
DBasicLruCache.java27 private final LinkedHashMap<K, V> map; field in BasicLruCache
/libcore/luni/src/main/java/java/net/
DCookieStoreImpl.java32 private final Map<URI, List<HttpCookie>> map = new HashMap<URI, List<HttpCookie>>(); field in CookieStoreImpl
/libcore/luni/src/main/java/java/lang/
DSystem.java227 Map<String, String> map = new HashMap<String, String>(); in getenv() local
658 private final Map<String, String> map; field in System.SystemEnvironment
660 public SystemEnvironment(Map<String, String> map) { in SystemEnvironment() argument
/libcore/luni/src/test/java/tests/org/w3c/dom/
DSetNamedItemNS.java83 NamedNodeMap map; in testSetNamedItemNS1() local
/libcore/luni/src/main/native/
DNetworkUtilities.cpp90 …inetAddressToSockaddr(JNIEnv* env, jobject inetAddress, int port, sockaddr_storage* ss, bool map) { in inetAddressToSockaddr()

123