Searched defs:eq (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DAbstractMap.java547 private static boolean eq(Object o1, Object o2) { method in class:AbstractMap
656 return eq(key, e.getKey()) && eq(value, e.getValue());
787 return eq(key, e.getKey()) && eq(value, e.getValue());
H A DWeakHashMap.java285 private static boolean eq(Object x, Object y) { method in class:WeakHashMap
383 if (e.hash == h && eq(k, e.get()))
412 while (e != null && !(e.hash == h && eq(k, e.get())))
436 if (h == e.hash && eq(k, e.get())) {
581 if (h == e.hash && eq(k, e.get())) {
H A DCollections.java980 if (!eq(target.get(i), source.get(j)))
990 if (!eq(ti.next(), si.next())) {
1033 if (!eq(target.get(i), source.get(j)))
1045 if (!eq(ti.next(), si.next())) {
1745 return eq(e.getKey(), t.getKey()) &&
1746 eq(e.getValue(), t.getValue());
3958 public boolean contains(Object o) {return eq(o, element);}
4007 public boolean contains(Object obj) {return eq(obj, element);}
4072 public boolean containsKey(Object key) {return eq(key, k);}
4074 public boolean containsValue(Object value) {return eq(valu
4448 static boolean eq(Object o1, Object o2) { method in class:Collections
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DConcurrentSkipListSetTest.java981 static boolean eq(Integer i, int j) { method in class:ConcurrentSkipListSetTest
H A DTreeMapTest.java1085 static boolean eq(Integer i, int j) { method in class:TreeMapTest
H A DTreeSetTest.java982 static boolean eq(Integer i, int j) { method in class:TreeSetTest
H A DConcurrentSkipListMapTest.java1280 static boolean eq(Integer i, int j) { method in class:ConcurrentSkipListMapTest

Completed in 349 milliseconds