Searched refs:eq (Results 76 - 100 of 142) sorted by relevance

123456

/openjdk7/jdk/test/com/sun/corba/cachedSocket/
H A D7056731.sh109 if [ $result -eq 0 ]
/openjdk7/make/scripts/
H A Dupdate_copyright_year.sh60 -a ${lastLineCount} -eq 1 ] ; then
181 if [ ${previous} -eq 0 ] ; then
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp132 virtual bool eq( const Type *t ) const;
358 virtual bool eq( const Type *t ) const;
385 virtual bool eq( const Type *t ) const;
413 virtual bool eq( const Type *t ) const;
469 virtual bool eq( const Type *t ) const;
514 virtual bool eq( const Type *t ) const;
565 virtual bool eq( const Type *t ) const;
608 virtual bool eq(const Type *t) const;
664 virtual bool eq( const Type *t ) const;
723 virtual bool eq( cons
[all...]
/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/test/java/util/prefs/
H A DPrefsSpi.sh51 test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
/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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DArrayField.java119 body._if( acc.ref(true).eq(JExpr._null()) )._then()
139 $get.body()._if(acc.ref(true).eq(JExpr._null()))._then()
152 $getLength.body()._if(acc.ref(true).eq(JExpr._null()))._then()
/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
/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/langtools/src/share/classes/com/sun/tools/javadoc/
H A DStart.java338 int eq = s.indexOf('=');
339 String key = (eq < 0) ? s : s.substring(0, eq);
340 String value = (eq < 0) ? s : s.substring(eq+1);
/openjdk7/jdk/src/share/classes/javax/management/
H A DImmutableDescriptor.java183 int eq = field.indexOf('=');
184 if (eq < 0) {
188 fieldNames[i] = field.substring(0, eq);
190 fieldValues[i] = field.substring(eq + 1);
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A DMain.java112 int eq = value.indexOf('=');
113 if (eq != -1) {
114 System.setProperty(value.substring(0, eq),
115 value.substring(eq + 1));
/openjdk7/jdk/test/com/sun/jdi/
H A DSolaris32AndSolaris64Test.sh222 if [ $status -eq "0" ];
/openjdk7/jdk/test/java/lang/Thread/
H A DUncaughtExceptions.sh46 test "$rc" -eq 0 || Die "Command \"$*\" failed with exitValue $rc";
/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/javax/management/openmbean/
H A DCompositeDataSupport.java389 boolean eq = e1.getClass().isArray() ?
393 if (!eq)
/openjdk7/jdk/test/tools/launcher/
H A DMultipleJRE.sh77 if [ $? -eq 0 ]; then
400 if [ $? -eq 0 ]; then
/openjdk7/langtools/test/tools/javac/Paths/
H A DDiagnostics.sh51 test $rc -eq 0 || Fail "Command \"$*\" failed with exitValue $rc";
74 test "$rc" -eq 0 && \
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.java3263 boolean eq = deepEquals0(e1, e2);
3265 if (!eq)
3273 boolean eq;
3275 eq = deepEquals ((Object[]) e1, (Object[]) e2);
3277 eq = equals((byte[]) e1, (byte[]) e2);
3279 eq = equals((short[]) e1, (short[]) e2);
3281 eq = equals((int[]) e1, (int[]) e2);
3283 eq = equals((long[]) e1, (long[]) e2);
3285 eq = equals((char[]) e1, (char[]) e2);
3287 eq
[all...]
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/langtools/src/share/classes/com/sun/tools/javac/main/
H A DRecognizedOptions.java561 int eq = s.indexOf('=');
562 String key = (eq < 0) ? s : s.substring(0, eq);
563 String value = (eq < 0) ? s : s.substring(eq+1);
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java1013 EventQueue eq = Toolkit.getEventQueue();
1014 return eq.isDispatchThreadImpl();
1018 EventQueue eq = this;
1021 EventQueue next = eq.nextQueue;
1023 eq = next;
1024 next = eq.nextQueue;
1026 return (Thread.currentThread() == eq.dispatchThread);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAppContext.java550 final EventQueue eq = (EventQueue)appContext.get(EVENT_QUEUE_KEY);
551 if (eq != null) {
552 eq.postEvent(AWTAutoShutdown.getShutdownEvent());
/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))
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java437 int eq = line.indexOf("=");
438 if (eq > 0)
439 messages.put(line.substring(0, eq), new Message(l));

Completed in 95 milliseconds

123456