Home | History | Annotate | Download | only in number

Lines Matching defs:EXPONENT

59      *       whitespace is allowed to occur arbitrarily before and after prefixes and exponent
190 EXPONENT
196 * details about the exponent and negative signs, etc.
212 int exponent;
268 exponent = 0;
329 exponent = other.exponent;
373 if (type == DigitType.EXPONENT) {
375 int newExponent = exponent * 10 + digit;
376 if (newExponent < exponent) {
378 exponent = Integer.MAX_VALUE;
380 exponent = newExponent;
422 // Check for exponent overflow
424 if (exponent == Integer.MAX_VALUE) {
434 } else if (exponent > 1000) {
445 int delta = (sawNegativeExponent ? -1 : 1) * exponent;
1179 // Accept whitespace, suffixes, and exponent separators
1198 // Accept whitespace and suffixes but not exponent separators
1300 if (DEBUGGING) System.out.println("-> reject due to lack of exponent");
1450 acceptDigitHelper(cp, nextName, state, item, DigitType.EXPONENT);
1505 * @param type The type of the digit to record (INTEGER, FRACTION, or EXPONENT)
1525 int cp, StateName nextName, ParserState state, StateItem item, boolean exponent) {
1526 acceptMinusSign(cp, nextName, null, state, item, exponent);
1527 acceptPlusSign(cp, nextName, null, state, item, exponent);
1536 boolean exponent) {
1540 if (exponent) {
1557 boolean exponent) {