Searched defs:isZero (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/test/tools/javac/BadOptimization/
H A DSwitch2.java37 private boolean isZero( int d ) { method in class:Switch2
47 if ( !isZero( b ) )
48 throw new RuntimeException("isZero(0) returns false?!");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DMultiplicity.java113 public boolean isZero() { method in class:Multiplicity
177 if (isZero(lhs.max) || isZero(rhs.max))
187 private static boolean isZero(BigInteger i) { method in class:Multiplicity
/openjdk7/jdk/src/share/classes/java/text/
H A DDigitList.java113 boolean isZero() { method in class:DigitList
681 if (isZero()) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKerberosTime.java311 public boolean isZero() { method in class:KerberosTime
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java396 boolean isZero() { method in class:MutableBigInteger
411 return isZero() ? false : ((value[offset + intLen - 1] & 1) == 1);
1343 if (f.isZero())
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java529 if (n.floatValue() == 0.0f && !isZero(proper))
546 if (n.doubleValue() == 0.0d && !isZero(proper))
584 boolean isZero(String s) { method in class:JavacParser

Completed in 56 milliseconds