Searched defs:compare (Results 76 - 100 of 134) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DRemoteClass.java473 public int compare(ClassDoc o1, ClassDoc o2) { method in class:RemoteClass.ClassDocComparator
/openjdk7/langtools/test/tools/javah/compareTest/
H A DCompareTest.java98 compare(oldOutDir, newOutDir);
174 void compare(File f1, File f2) throws IOException { method in class:CompareTest
190 compare(new File(d1, c), new File(d2, c));
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DTestIBMDB.java171 // check and compare canEncoding/Encoding
230 // check and compare canEncoding/Encoding
316 static void compare(Charset cs1, Charset cs2, char[] cc) throws Exception { method in class:TestIBMDB
529 compare(csNew, csOld, cc);
/openjdk7/jdk/test/sun/nio/cs/
H A DTestEUC_TW.java229 static void compare(Charset cs1, Charset cs2) throws Exception { method in class:TestEUC_TW
425 compare(euctw, new EUC_TW_OLD());
H A DTestUTF8.java212 static void compare(String csn1, String csn2) throws Exception { method in class:TestUTF8
434 //compare("UTF-8", "UTF-8-OLD");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDecimalDV.java57 public final int compare(Object value1, Object value2){ method in class:DecimalDV
H A DPrecisionDecimalDV.java292 return sign * compare(val);
297 private int compare(XPrecisionDecimal val) { method in class:PrecisionDecimalDV.XPrecisionDecimal
426 public int compare(Object value1, Object value2) { method in class:PrecisionDecimalDV
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSet.java467 * @param obj2 Object to compare this nodeset to
474 public boolean compare(XObject obj2, Comparator comparator) method in class:XNodeSet
640 * @param obj2 object to compare this nodeset to
642 * @return see this.compare(...)
648 return compare(obj2, S_LT);
654 * @param obj2 object to compare this nodeset to
656 * @return see this.compare(...)
662 return compare(obj2, S_LTE);
668 * @param obj2 object to compare this nodeset to
670 * @return see this.compare(
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DXMLGregorianCalendar.java165 * <li>partial order relation comparator method, {@link #compare(XMLGregorianCalendar xmlGregorianCalendar)}</li>
166 * <li>{@link #equals(Object)} defined relative to {@link #compare(XMLGregorianCalendar xmlGregorianCalendar)}.</li>
650 * @param xmlGregorianCalendar Instance of <code>XMLGregorianCalendar</code> to compare
661 public abstract int compare(XMLGregorianCalendar xmlGregorianCalendar); method in class:XMLGregorianCalendar
679 * @param obj to compare.
683 * {@link #compare(XMLGregorianCalendar obj)}
692 return compare((XMLGregorianCalendar) obj) == DatatypeConstants.EQUAL;
702 // Following two dates compare to EQUALS since in different timezones.
/openjdk7/jdk/src/share/classes/java/io/
H A DFileSystem.java224 public abstract int compare(File f1, File f2); method in class:FileSystem
/openjdk7/jdk/src/share/classes/java/lang/
H A DDouble.java764 * @param obj the object to compare with.
950 return Double.compare(value, anotherDouble.value);
961 * @param d1 the first {@code double} to compare
962 * @param d2 the second {@code double} to compare
971 public static int compare(double d1, double d2) { method in class:Double
H A DFloat.java854 return Float.compare(value, anotherFloat.value);
865 * @param f1 the first {@code float} to compare.
866 * @param f2 the second {@code float} to compare.
875 public static int compare(float f1, float f2) { method in class:Float
H A DInteger.java759 * @param obj the object to compare with.
1003 return compare(this.value, anotherInteger.value);
1013 * @param x the first {@code int} to compare
1014 * @param y the second {@code int} to compare
1020 public static int compare(int x, int y) { method in class:Integer
H A DLong.java789 * @param obj the object to compare with.
953 return compare(this.value, anotherLong.value);
963 * @param x the first {@code long} to compare
964 * @param y the second {@code long} to compare
970 public static int compare(long x, long y) { method in class:Long
/openjdk7/jdk/src/share/classes/java/text/
H A DCollator.java72 * The following example shows how to compare two strings using
78 * if( myCollator.compare("abc", "ABC") < 0 )
101 * if( usCollator.compare("abc", "ABC") == 0 ) {
107 * For comparing <code>String</code>s exactly once, the <code>compare</code>
109 * <code>String</code>s however, it is generally necessary to compare each
309 public abstract int compare(String source, String target); method in class:Collator
317 * <code> compare((String)o1, (String)o2) </code>.
326 public int compare(Object o1, Object o2) { method in class:Collator
327 return compare((String)o1, (String)o2);
333 * Collator.compare whe
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfoSupport.java523 if (compare(info.getMinValue(), defaultValue) > 0) {
529 if (compare(info.getMaxValue(), defaultValue) < 0) {
560 if (compare(info.getMinValue(), info.getMaxValue()) > 0) {
569 static int compare(Object x, Object y) { method in class:OpenMBeanAttributeInfoSupport
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.cpp194 //------------------------------compare----------------------------------------
200 int VectorSet::compare (const VectorSet &s) const function in class:VectorSet
234 return compare(s) == 3; // TRUE if A and B are mutual subsets
265 return compare(s) == 1; // A subset B, B not subset A
279 return compare(s) & 1; // A subset B
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp515 static int compare(FrameValue* a, FrameValue* b) { function in class:FrameValues
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessEnvironment.java193 public int compare(String s1, String s2) { method in class:ProcessEnvironment.NameComparator
218 public int compare(Map.Entry<String,String> e1, method in class:ProcessEnvironment.EntryComparator
220 return nameComparator.compare(e1.getKey(), e2.getKey());
312 if (cmp < 0 && (cmp = nameComparator.compare(key, SYSTEMROOT)) > 0) {
/openjdk7/jdk/test/java/io/File/
H A DGetXSpace.java212 private static void compare(Space s) { method in class:GetXSpace
338 compare((GetXSpace.Space) l.get(0));
368 compare(s);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilder.java847 public int compare(CertStore store1, CertStore store2) { method in class:SunCertPathBuilder.CertStoreComparator
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DTableSorter.java95 private int compare(Object o1, Object o2) { method in class:TableSorter
157 return (compare(s1,s2) > 0);
159 return (compare(s1,s2) < 0);
164 return (compare(s1,s2) < 0);
166 return (compare(s1,s2) > 0);
/openjdk7/jdk/src/solaris/classes/java/io/
H A DUnixFileSystem.java304 public int compare(File f1, File f2) { method in class:UnixFileSystem
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapContent.java493 final int compare(MarkData o1, MarkData o2) { method in class:GapContent
540 cmp = compare(o, last);
547 cmp = compare(o, entry);
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java198 final int compare(MutableBigInteger b) { method in class:MutableBigInteger
245 // compare values with right-shifted values of b,
646 int sign = a.compare(b);
696 int sign = a.compare(b);
891 int cmp = compare(b);
1347 if (f.compare(g) < 0) {
1408 while (c.compare(p) >= 0)

Completed in 145 milliseconds

123456