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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java33 public class FloatingDecimal{ class
45 private FloatingDecimal( boolean negSign, int decExponent, char []digits, int n, boolean e ) method in class:FloatingDecimal
405 public FloatingDecimal( double d ) method in class:FloatingDecimal
465 public FloatingDecimal( float f ) method in class:FloatingDecimal
999 public static FloatingDecimal
1050 return (potentialNaN ? new FloatingDecimal(Double.NaN) // NaN has no sign
1051 : new FloatingDecimal(isNegative?
1239 return new FloatingDecimal( isNegative, decExp, digits, nDigits, false );
1245 * Take a FloatingDecimal, which we presumably just scanned in,
1603 * Take a FloatingDecimal, whic
[all...]

Completed in 35 milliseconds