HomeSort by relevance Sort by last modified time
    Searched defs:me1 (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/libcore/java/util/
OldMapEntryTest.java 89 Map.Entry me1 = (Map.Entry)i.next(); local
90 assertFalse(me.equals(me1));
92 me1 = me;
93 assertTrue(me.equals(me1));
97 Map.Entry me1 = (Map.Entry)i.next(); local
98 assertTrue(me.hashCode() != me1.hashCode());
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java 72 Method me1 = eqList.get(i); local
74 //System.out.println("eq test for "+me1.getName()+", "+me2.getName());
75 Annotation a1 = me1.getDeclaredAnnotations()[0];
77 assertEquals("must be equal : method1:"+me1.getName()+", method2: "+me2.getName(), a1, a2);
86 Method me1 = eqList.get(i); local
88 Annotation a1 = me1.getDeclaredAnnotations()[0];
90 //System.out.println("ne test for "+me1.getName()+", "+me2.getName());
91 assertFalse("must not be equal : method1:"+me1.getName()+", method2: "+me2.getName(),

Completed in 68 milliseconds