Lines Matching full:fraction
547 String fraction;
553 fraction = "0";
555 fraction = s.substring(point_pos + 1, len);
558 BigInteger scaled_result = new BigInteger(whole + fraction, radix);
559 BigInteger divisor = BigInteger.valueOf(radix).pow(fraction.length());
592 String fraction = scaled_string.substring(len - n);
593 result = whole + "." + fraction;