Lines Matching refs:multiplier

540            (Double.isInfinite(number) && multiplier == 0)) {
558 boolean isNegative = ((number < 0.0) || (number == 0.0 && 1/number < 0.0)) ^ (multiplier < 0);
560 if (multiplier != 1) {
561 number *= multiplier;
648 // is one case we have to be careful of: The multiplier can push
654 if (multiplier != 0) {
657 } else if (multiplier != 1 && multiplier != 0) {
658 long cutoff = Long.MAX_VALUE / multiplier;
673 number *= multiplier;
677 if (multiplier < 0) {
726 if (multiplier != 1) {
781 if (multiplier != 1) {
1274 if (status[STATUS_POSITIVE] == (multiplier >= 0)) {
1281 if (multiplier == 0) {
1294 if (multiplier != 1) {
1324 // Divide by multiplier. We have to be careful here not to do
1326 if (multiplier != 1) {
1328 doubleResult /= multiplier;
1331 if (longResult % multiplier == 0) {
1332 longResult /= multiplier;
1334 doubleResult = ((double)longResult) / multiplier;
1345 // At this point, if we divided the result by the multiplier, the
1354 if (multiplier != 1 && gotDouble) {
1367 * Return a BigInteger multiplier.
1371 bigIntegerMultiplier = BigInteger.valueOf(multiplier);
1378 * Return a BigDecimal multiplier.
1382 bigDecimalMultiplier = new BigDecimal(multiplier);
1798 * Gets the multiplier for use in percent, per mille, and similar
1804 return multiplier;
1808 * Sets the multiplier for use in percent, per mille, and similar
1810 * For a percent format, set the multiplier to 100 and the suffixes to
1812 * For a per mille format, set the multiplier to 1000 and the suffixes to
1815 * <P>Example: with multiplier 100, 1.23 is formatted as "123", and
1821 multiplier = newValue;
1928 && multiplier == other.multiplier
2375 int multiplier = 1;
2465 if (multiplier != 1) {
2469 multiplier = 100;
2473 if (multiplier != 1) {
2477 multiplier = 1000;
2636 this.multiplier = multiplier;
3046 * The multiplier for use in percent, per mille, etc.
3051 private int multiplier = 1;