Home
last modified time | relevance | path

Searched refs:me (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
DOldMapEntryTest.java28 Map.Entry me = null; field in OldMapEntryTest
33 assertTrue(hm.containsKey(me.getKey())); in testGetKey()
36 me.getKey(); in testGetKey()
44 assertTrue(hm.containsValue(me.getValue())); in testGetValue()
47 me.getValue(); in testGetValue()
75 me = (Map.Entry)i.next(); in testSetValue()
77 me.setValue("Wrong element"); in testSetValue()
81 me.setValue(""); in testSetValue()
90 assertFalse(me.equals(me1)); in testEquals()
91 assertFalse(me.equals(this)); in testEquals()
[all …]
/libcore/ojluni/src/main/java/java/nio/channels/spi/
DAbstractInterruptibleChannel.java172 Thread me = Thread.currentThread(); in begin() local
173 if (me.isInterrupted()) in begin()
174 interruptor.interrupt(me); in begin()
DAbstractSelector.java217 Thread me = Thread.currentThread(); in begin() local
218 if (me.isInterrupted()) in begin()
219 interruptor.interrupt(me); in begin()
/libcore/ojluni/src/main/java/java/util/jar/
DAttributes.java216 for (Map.Entry<?,?> me : (attr).entrySet()) in putAll()
217 put(me.getKey(), me.getValue()); in putAll()
/libcore/luni/src/test/java/libcore/java/net/
DOldJarURLConnectionTest.java317 } catch(MalformedURLException me) { in test_Constructor()
329 } catch(MalformedURLException me) { in test_Constructor()
333 } catch(MalformedURLException me) { in test_Constructor()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DAbstractMapTest.java306 Map.Entry me = new Map.Entry() { in entrySet() local
324 return me; in entrySet()
/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKPeriod.java526 …factory_between_LocalDate(int y1, int m1, int d1, int y2, int m2, int d2, int ye, int me, int de) { in factory_between_LocalDate() argument
530 assertPeriod(test, ye, me, de); in factory_between_LocalDate()
DTCKLocalDate.java1866 …est_periodUntil_LocalDate(int y1, int m1, int d1, int y2, int m2, int d2, int ye, int me, int de) {
1871 assertEquals(test.getMonths(), me);