Home
last modified time | relevance | path

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

/external/nist-sip/java/gov/nist/core/
DMultiValueMapImpl.java146 public void putAll(Map< ? extends String, ? extends List<V>> mapToPut) { in putAll() argument
147 for (String k : mapToPut.keySet()) { in putAll()
149 al.addAll(mapToPut.get(k)); in putAll()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java1163 final Map<K, V> mapToPut = Collections.singletonMap(keyToPut, valueToPut); in testPutAllNewKey() local
1166 map.putAll(mapToPut); in testPutAllNewKey()
1173 map.putAll(mapToPut); in testPutAllNewKey()
1193 final Map<K, V> mapToPut = Collections.singletonMap(keyToPut, valueToPut); in testPutAllExistingKey() local
1196 map.putAll(mapToPut); in testPutAllExistingKey()
1202 map.putAll(mapToPut); in testPutAllExistingKey()