Searched refs:EXPONENT (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/ |
H A D | ExpressionParserConstants.java | 99 int EXPONENT = 64; field in interface:ExpressionParserConstants 219 "<EXPONENT>",
|
H A D | Expr.jj | 209 (["0"-"9"])+ "." (["0"-"9"])* (<EXPONENT>)? (["f","F","d","D"])? 210 | "." (["0"-"9"])+ (<EXPONENT>)? (["f","F","d","D"])? 211 | (["0"-"9"])+ <EXPONENT> (["f","F","d","D"])? 212 | (["0"-"9"])+ (<EXPONENT>)? ["f","F","d","D"] 215 < #EXPONENT: ["e","E"] (["+","-"])? (["0"-"9"])+ >
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | NumberFormatter.java | 370 (field != NumberFormat.Field.EXPONENT &&
|
/openjdk7/jdk/src/share/classes/java/text/ |
H A D | ChoiceFormat.java | 524 static final long EXPONENT = 0x7FF0000000000000L; 534 significand |= (SIGN | EXPONENT); 536 long exponent = bits & EXPONENT; 544 bits = exponent | (significand & ~EXPONENT); 550 static final long EXPONENT = 0x7FF0000000000000L; field in class:ChoiceFormat
|
H A D | NumberFormat.java | 1085 public static final Field EXPONENT = new Field("exponent"); field in class:NumberFormat.Field
|
H A D | DecimalFormat.java | 1047 delegate.formatted(Field.EXPONENT, Field.EXPONENT, eFieldStart, 1176 * to map the <code>SIGN</code> attribute to the <code>EXPONENT</code>
|
Completed in 64 milliseconds