Home | History | Annotate | Download | only in util

Lines Matching refs:asDouble

488             double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException
489 result = (long) asDouble;
490 if ((double) result != asDouble) {
519 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException
520 result = (int) asDouble;
521 if ((double) result != asDouble) {