Searched refs:equal (Results 76 - 100 of 240) sorted by relevance

12345678910

/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DFinalizeZipFile.java82 equal(finalizersDone.getCount(), 0L);
92 static void equal(Object x, Object y) { method in class:FinalizeZipFile
94 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/sun/nio/cs/
H A DISO8859x.java70 equal(chars.length, 1);
98 static void equal(Object x, Object y) { method in class:ISO8859x
100 else fail(x + " not equal to " + y);}
H A DFindDecoderBugs.java203 equal(ib.limit(), ib.capacity());
204 equal(ob.limit(), ob.capacity());
248 equal(rob.limit(), n);
249 equal(dob.limit(), n);
435 static void equal(Object x, Object y) { method in class:FindDecoderBugs
437 else fail(x + " not equal to " + y);}
438 static void equal(int x, int y) { method in class:FindDecoderBugs
440 else fail(x + " not equal to " + y);}
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DTypeCode.java113 * <LI><code>equal</code>
174 * testing for equality. <code>TypeCode</code> objects are equal if
179 * @return <code>true</code> if the type codes are equal;
183 public abstract boolean equal(TypeCode tc); method in class:TypeCode
308 * @throws org.omg.CORBA.TypeCodePackage.Bounds if the index is equal
333 * equal to or greater than
357 * equal to or greater than
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DUtil.java99 * determine if two Strings are equal ignoring case allowing null values
103 * @return true iff the given strings are equal ignoring case, false if they aren't
104 * equal or either of them are null.
119 * @return true iff the strings are equal, false if they aren't equal or either of
122 public static boolean equal(String s, String t) { method in class:Util
/openjdk7/jdk/test/com/sun/tools/extcheck/
H A DTestExtcheckArgs.java85 static boolean equal(Object x, Object y) { method in class:TestExtcheckArgs
87 else return fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/Arrays/
H A DFill.java67 static void equal(Object x, Object y) { method in class:Fill
69 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/Collections/
H A DEmptyIterator.java83 equal(m, unmodifiableMap(m));
92 equal(a.length, 0);
93 equal(a.getClass().getComponentType(), Object.class);
128 void equal(Object x, Object y) { method in class:EmptyIterator
130 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/Random/
H A DNextBytes.java54 static void equal(Object x, Object y) { method in class:NextBytes
56 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/Vector/
H A DCopyInto.java55 static void equal(Object x, Object y) { method in class:CopyInto
57 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/concurrent/CopyOnWriteArrayList/
H A DEqualsRace.java62 static void equal(Object x, Object y) { method in class:EqualsRace
64 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DExplicitSet.java80 static void equal(Object x, Object y) { method in class:ExplicitSet
82 else fail(x + " not equal to " + y);}
H A DThrow.java101 equal(c.getClass(), ee.getCause().getClass());
125 void equal(Object x, Object y) { method in class:Throw
127 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/logging/
H A DLoggingDeadlock2.java67 equal(r.exitValue(), 99);
68 equal(r.out(), "");
69 equal(r.err(), "");
233 static void equal(Object x, Object y) { method in class:LoggingDeadlock2
235 else fail(x + " not equal to " + y);}
/openjdk7/jdk/test/java/util/zip/GZIP/
H A DReadUByte.java65 static void equal(Object x, Object y) { method in class:ReadUByte
67 else fail(x + " not equal to " + y);}
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosRoundsTest.java178 boolean equal;
182 equal = expect.startsWith(head) && expect.endsWith(tail);
184 equal = expect.equals(found);
187 if (!equal) {
/openjdk7/hotspot/src/share/tools/launcher/
H A Dwildcard.c214 equal(const char *s1, const char *s2) function
347 (equal(filename + len - 3, "jar") ||
348 equal(filename + len - 3, "JAR")) &&
440 if (equal((*argv)[i], "-cp") ||
441 equal((*argv)[i], "-classpath")) {
/openjdk7/jdk/src/share/bin/
H A Dwildcard.c214 equal(const char *s1, const char *s2) function
335 (equal(filename + len - 3, "jar") ||
336 equal(filename + len - 3, "JAR")) &&
440 if (equal((*argv)[i], "-cp") ||
441 equal((*argv)[i], "-classpath")) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyCollectionImpl.java142 if (! value[i].type().equal(expectedTypeCode)) {
189 if (! value[i].type().equal(expectedTypeCode)) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindInHeapPanel.java89 if (AddressOps.equal(val, value)) {
99 if (AddressOps.equal(val, value)) {
/openjdk7/jdk/test/java/util/concurrent/Executors/
H A DPrivilegedCallables.java134 equal(c.call(), n);
145 void equal(Object x, Object y) { method in class:PrivilegedCallables
147 else fail(x + " not equal to " + y);}
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/cmdline/
H A DTransform.java274 final int equal = args[i].indexOf('=');
275 if (equal > 0) {
276 final String name = args[i].substring(0, equal);
277 final String value = args[i].substring(equal+1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAddressOps.java45 /** Returns true if a1 is less than or equal to a2. Either or both may be null. */
67 /** Returns true if a1 is greater than or equal to a2. Either or both may be null. */
78 /** Returns true if a1 is equal to a2. Either or both may be null. */
79 public static boolean equal(Address a1, Address a2) { method in class:AddressOps
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.hpp96 bool equal(StackValue *value) { function in class:StackValue
/openjdk7/jdk/test/java/lang/
H A DHashCode.java71 void equal(Object x, Object y) { method in class:HashCode
73 else fail(x + " not equal to " + y);}

Completed in 81 milliseconds

12345678910