Home | History | Annotate | Download | only in math

Lines Matching defs:TEN

233      * @see #TEN
244 * @see #TEN
260 public static final com.ibm.icu.math.BigDecimal TEN = new com.ibm.icu.math.BigDecimal(10);
461 * BigInteger</code> divided by ten to the power of the scale. The <code>BigInteger</code> parameter must not be
908 * (Exponential notation means that the number includes an optional sign and a power of ten following an
916 * </code> number will be expressed in scientific notation (where the power of ten is adjusted so there is a single
2562 * <code> this.multiply(TEN.pow(new BigDecimal(-n))) </code>
2586 * <code> this.multiply(TEN.pow(new BigDecimal(n))) </code>
2853 * @return The <code>java.math.BigInteger</code> equal in value to this <code>BigDecimal</code> multiplied by ten to
2913 * <code> (new BigDecimal(lint)).divide(TEN.pow(new BigDecimal(scale))) </code>
2932 res = TEN;