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

12

/openjdk7/jdk/test/java/util/ServiceLoader/
H A DBasic.java41 private static <T> void checkEquals(Set<T> s1, Set<T> s2, boolean eq) { argument
42 if (s1.equals(s2) != eq)
44 eq, s1, s2));
/openjdk7/jdk/test/java/nio/file/attribute/FileTime/
H A DBasic.java44 eq(now, MILLISECONDS, now, MILLISECONDS);
45 eq(now, MILLISECONDS, now*1000L, MICROSECONDS);
131 static void eq(long v1, TimeUnit u1, long v2, TimeUnit u2) { method in class:Basic
/openjdk7/jdk/test/java/util/TreeMap/
H A DNullAtEnd.java62 private static boolean eq(Object x, Object y) { method in class:NullAtEnd
83 check(eq(m1.put("a", "a"), null));
84 check(eq(m1.put("b", "b"), null));
85 check(eq(m1.put("c", "c"), null));
86 check(eq(m1.put(null, "d"), null));
90 check(eq(m1.lastKey(), null));
91 check(eq(m1.get(m1.lastKey()), "d"));
92 check(eq(m1.remove(m1.lastKey()), "d"));
93 check(eq(m1.lastKey(), "c"));
95 check(eq(m
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArraySet.java376 if (!matched[i] && eq(x, elements[i])) {
389 private static boolean eq(Object o1, Object o2) { method in class:CopyOnWriteArraySet
H A DCopyOnWriteArrayList.java158 private static boolean eq(Object o1, Object o2) { method in class:CopyOnWriteArrayList
518 if (eq(o, elements[i])) {
529 if (eq(o, elements[newlen])) {
593 if (eq(e, elements[i]))
923 if (!it.hasNext() || !eq(elements[i], it.next()))
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DLongHashMap.java116 return (key == e.getKey()) && eq(value, e.getValue());
449 static boolean eq(Object o1, Object o2) { method in class:LongHashMap
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DEdge.java68 public void setEquivalence(int eq) { argument
69 equivalence = eq;
/openjdk7/jdk/src/share/classes/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.java343 private static boolean eq(Object x, Object y) { method in class:WeakHashMap
469 if (e.hash == h && eq(k, e.get()))
498 while (e != null && !(e.hash == h && eq(k, e.get())))
522 if (h == e.hash && eq(k, e.get())) {
674 if (h == e.hash && eq(k, e.get())) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventDispatchThread.java201 EventQueue eq = null;
205 eq = getEventQueue();
209 event = delegate.getNextEvent(eq);
211 event = (id == ANY_EVENT) ? eq.getNextEvent() : eq.getNextEvent(id);
242 eq.dispatchEvent(event);
270 public synchronized void setEventQueue(EventQueue eq) { argument
271 theQueue = eq;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java126 JExpression eq(JExpression right); method in interface:JExpression
H A DJExpressionImpl.java129 public final JExpression eq(JExpression right) { method in class:JExpressionImpl
130 return JOp.eq(this, right);
H A DJOp.java212 public static JExpression eq(JExpression left, JExpression right) { method in class:JOp
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DStringIntMap.java125 if (e._hash == hash && eq(key, e._key)) {
161 if (e._hash == hash && eq(key, e._key)) {
213 private final boolean eq(String x, String y) { method in class:StringIntMap
H A DLocalNameQualifiedNamesMap.java141 if (e._hash == hash && eq(key, e._key)) {
154 if (e._hash == hash && eq(key, e._key)) {
172 if (e._hash == hash && eq(key, e._key)) {
225 private final boolean eq(String x, String y) { method in class:LocalNameQualifiedNamesMap
/openjdk7/jdk/test/java/net/CookieHandler/
H A DTestHttpCookie.java194 static void eq(HttpCookie ck1, HttpCookie ck2, boolean same) { method in class:TestHttpCookie
350 eq(c1, c2, true);
355 eq(c1, c2, true);
362 eq(c1, c2, false);
/openjdk7/jdk/src/share/classes/javax/management/
H A DQuery.java50 * Query.and(Query.eq(Query.attr("Enabled"), Query.value(true)),
51 * Query.eq(Query.attr("Owner"), Query.value("Duke")));
84 * A code representing the {@link Query#eq} query. This is chiefly
240 public static QueryExp eq(ValueExp v1, ValueExp v2) { method in class:Query
/openjdk7/hotspot/test/compiler/6865031/
H A DTest.java183 private boolean eq(Object x, Object y) method in class:WeakPool
292 if (e.hash == h && eq(key, candidate))
311 while (e != null && !(e.hash == h && eq(key, e.get())))
338 if (h == e.hash && eq(key, candidate))
452 if (h == e.hash && eq(key, candidate))
647 private boolean eq(Object x, Object y) { method in class:Test
/openjdk7/jdk/test/java/util/Arrays/
H A DCopyMethods.java209 if (!eq(ai, tv)) {
225 static boolean eq(Object x, Object y) { method in class:CopyMethods
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java66 eq = Query.eq(intValue, floatValue), field in class:QueryExpStringTest
117 eq, "(12345678) = (2.5)",
258 return Query.eq(lhs, rhs);
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.hpp266 enum mask { eq = 0, ne = 4, le = 5, ge = 7, lt = 3, gt = 1, illegal = 8 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::mask
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.cpp1095 BasicBlock *eq = builder()->GetInsertBlock(); local
1110 result->addIncoming(LLVMValue::jint_constant(0), eq);
1131 BasicBlock *eq = builder()->CreateBlock(ip, "fcmp_eq"); local
1143 builder()->CreateCondBr(builder()->CreateFCmpUGT(a, b), gt, eq);
1151 builder()->SetInsertPoint(eq);
1157 result->addIncoming(LLVMValue::jint_constant(0), eq);
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java146 static boolean eq(Result x, Result y) { method in class:FindDecoderBugs.Result
254 if (r1 != null && r2 != null && ! Result.eq(r1, r2))
270 if (! Result.eq(roomy, perfectFit))
H A DFindEncoderBugs.java153 static boolean eq(Result x, Result y) { method in class:FindEncoderBugs.Result
389 if (r1 != null && r2 != null && ! Result.eq(r1, r2))
405 if (! Result.eq(roomy, perfectFit))
/openjdk7/jdk/test/java/net/URI/
H A DTest.java1147 eq(u1, u2);
1364 static void eq(Comparable u, Comparable v) throws URISyntaxException { method in class:Test
1418 eq(o, o);
1422 eq(o, new URI("MaILto:foo@bar.com"));
1424 eq(r, new URI("rEg://some%20registry/b/c/d?q#f"));
1427 eq(s, new URI("hTtP://jag:cafebabe@Java.Sun.COM:94/b/c/d?q#f"));
1431 eq(new URI("http://host/a%00bcd"), new URI("http://host/a%00bcd"));
1468 eq(u, (Comparable)o);

Completed in 118 milliseconds

12