Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DInheritableThreadLocal.java70 ThreadLocalMap getMap(Thread t) { in getMap() method in InheritableThreadLocal
DThreadLocal.java161 ThreadLocalMap map = getMap(t); in get()
182 ThreadLocalMap map = getMap(t); in setInitialValue()
201 ThreadLocalMap map = getMap(t); in set()
220 ThreadLocalMap m = getMap(Thread.currentThread()); in remove()
232 ThreadLocalMap getMap(Thread t) { in getMap() method in ThreadLocal
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DAbstractMapTest.java266 public Map getMap() { in test_clone() method in AbstractMapTest.MyMap
285 assertTrue("clone not shallow", map.getMap() == mapClone.getMap()); in test_clone()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
DAttributesTest.java278 assertEquals(mockAttr.getMap().hashCode(), mockAttr.hashCode()); in test_hashCode()
282 public Map<Object, Object> getMap() { in getMap() method in AttributesTest.MockAttributes
/libcore/jsr166-tests/src/test/java/jsr166/
DConcurrentHashMap8Test.java217 assertTrue(((ConcurrentHashMap.KeySetView)set2).getMap() == map); in testKeySetAddRemove()
218 assertTrue(((ConcurrentHashMap.KeySetView)set1).getMap() == map); in testKeySetAddRemove()
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java4444 public ConcurrentHashMap<K,V> getMap() { return map; } in getMap() method in ConcurrentHashMap.CollectionView