/openjdk7/jdk/src/share/classes/sun/tools/javac/ |
H A D | ErrorMessage.java | 38 long where; field in class:ErrorMessage 45 ErrorMessage(long where, String message) { argument 46 this.where = where;
|
/openjdk7/jdk/src/share/classes/sun/tools/java/ |
H A D | IdentifierToken.java | 42 long where; field in class:IdentifierToken 46 public IdentifierToken(long where, Identifier id) { argument 47 this.where = where; 55 this.where = 0; 59 public IdentifierToken(long where, Identifier id, int modifiers) { argument 60 this.where = where; 67 return where; 85 * Return defaultWhere if id is null or id.where i [all...] |
/openjdk7/jdk/src/share/classes/sun/security/x509/ |
H A D | CertParseError.java | 40 CertParseError (String where) argument 42 super (CertException.verf_PARSE_ERROR, where);
|
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | BitXorExpression.java | 41 public BitXorExpression(long where, Expression left, Expression right) { argument 42 super(BITXOR, where, left, right); 49 return new BooleanExpression(where, a ^ b); 52 return new IntExpression(where, a ^ b); 55 return new LongExpression(where, a ^ b); 64 return new NotExpression(where, right); 67 return new NotExpression(where, left); 82 asm.add(where, opc_ixor + type.getTypeCodeOffset());
|
H A D | ConstantExpression.java | 39 public ConstantExpression(int op, long where, Type type) { argument 40 super(op, where, type);
|
H A D | SubtractExpression.java | 41 public SubtractExpression(long where, Expression left, Expression right) { argument 42 super(SUB, where, left, right); 49 return new IntExpression(where, a - b); 52 return new LongExpression(where, a - b); 55 return new FloatExpression(where, a - b); 58 return new DoubleExpression(where, a - b); 68 return new NegativeExpression(where, right); 81 asm.add(where, opc_isub + type.getTypeCodeOffset());
|
H A D | Node.java | 40 long where; field in class:Node 45 Node(int op, long where) { argument 47 this.where = where; 58 * Get where 61 return where; 80 return new ConvertExpression(where, t, e); 84 env.error(where, "explicit.cast.needed", opNames[op], e.type, t); 85 return new ConvertExpression(where, t, e); 88 env.error(where, "clas [all...] |
H A D | DivideExpression.java | 42 public DivideExpression(long where, Expression left, Expression right) { argument 43 super(DIV, where, left, right); 50 return new IntExpression(where, a / b); 53 return new LongExpression(where, a / b); 56 return new FloatExpression(where, a / b); 59 return new DoubleExpression(where, a / b); 85 asm.add(where, opc_idiv + type.getTypeCodeOffset());
|
H A D | MultiplyExpression.java | 41 public MultiplyExpression(long where, Expression left, Expression right) { argument 42 super(MUL, where, left, right); 49 return new IntExpression(where, a * b); 52 return new LongExpression(where, a * b); 55 return new FloatExpression(where, a * b); 58 return new DoubleExpression(where, a * b); 78 asm.add(where, opc_imul + type.getTypeCodeOffset());
|
H A D | RemainderExpression.java | 41 public RemainderExpression(long where, Expression left, Expression right) { argument 42 super(REM, where, left, right); 49 return new IntExpression(where, a % b); 52 return new LongExpression(where, a % b); 55 return new FloatExpression(where, a % b); 58 return new DoubleExpression(where, a % b); 65 asm.add(where, opc_irem + type.getTypeCodeOffset());
|
H A D | ConvertExpression.java | 43 public ConvertExpression(long where, Type type, Expression right) { argument 44 super(CONVERT, where, type, right); 65 case TC_BYTE: return new ByteExpression(right.where, (byte)value); 66 case TC_CHAR: return new CharExpression(right.where, (char)value); 67 case TC_SHORT: return new ShortExpression(right.where, (short)value); 68 case TC_INT: return new IntExpression(right.where, (int)value); 69 case TC_LONG: return new LongExpression(right.where, (long)value); 70 case TC_FLOAT: return new FloatExpression(right.where, (float)value); 71 case TC_DOUBLE: return new DoubleExpression(right.where, (double)value); 78 case TC_BYTE: return new ByteExpression(right.where, (byt [all...] |
H A D | ShiftLeftExpression.java | 40 public ShiftLeftExpression(long where, Expression left, Expression right) { argument 41 super(LSHIFT, where, left, right); 48 return new IntExpression(where, a << b); 51 return new LongExpression(where, a << b); 62 return new CommaExpression(where, right, left).simplify(); 71 asm.add(where, opc_ishl + type.getTypeCodeOffset());
|
H A D | ShiftRightExpression.java | 40 public ShiftRightExpression(long where, Expression left, Expression right) { argument 41 super(RSHIFT, where, left, right); 48 return new IntExpression(where, a >> b); 51 return new LongExpression(where, a >> b); 62 return new CommaExpression(where, right, left).simplify(); 71 asm.add(where, opc_ishr + type.getTypeCodeOffset());
|
H A D | UnsignedShiftRightExpression.java | 40 public UnsignedShiftRightExpression(long where, Expression left, Expression right) { argument 41 super(URSHIFT, where, left, right); 48 return new IntExpression(where, a >>> b); 51 return new LongExpression(where, a >>> b); 62 return new CommaExpression(where, right, left).simplify(); 71 asm.add(where, opc_iushr + type.getTypeCodeOffset());
|
H A D | AssignBitAndExpression.java | 41 public AssignBitAndExpression(long where, Expression left, Expression right) { argument 42 super(ASGBITAND, where, left, right); 50 asm.add(where, opc_iand + itype.getTypeCodeOffset());
|
H A D | AssignBitOrExpression.java | 41 public AssignBitOrExpression(long where, Expression left, Expression right) { argument 42 super(ASGBITOR, where, left, right); 50 asm.add(where, opc_ior + itype.getTypeCodeOffset());
|
H A D | AssignBitXorExpression.java | 41 public AssignBitXorExpression(long where, Expression left, Expression right) { argument 42 super(ASGBITXOR, where, left, right); 49 asm.add(where, opc_ixor + itype.getTypeCodeOffset());
|
H A D | AssignDivideExpression.java | 41 public AssignDivideExpression(long where, Expression left, Expression right) { argument 42 super(ASGDIV, where, left, right); 49 asm.add(where, opc_idiv + itype.getTypeCodeOffset());
|
H A D | AssignMultiplyExpression.java | 41 public AssignMultiplyExpression(long where, Expression left, Expression right) { argument 42 super(ASGMUL, where, left, right); 49 asm.add(where, opc_imul + itype.getTypeCodeOffset());
|
H A D | AssignRemainderExpression.java | 41 public AssignRemainderExpression(long where, Expression left, Expression right) { argument 42 super(ASGREM, where, left, right); 49 asm.add(where, opc_irem + itype.getTypeCodeOffset());
|
H A D | AssignShiftLeftExpression.java | 41 public AssignShiftLeftExpression(long where, Expression left, Expression right) { argument 42 super(ASGLSHIFT, where, left, right); 50 asm.add(where, opc_ishl + itype.getTypeCodeOffset());
|
H A D | AssignShiftRightExpression.java | 41 public AssignShiftRightExpression(long where, Expression left, Expression right) { argument 42 super(ASGRSHIFT, where, left, right); 49 asm.add(where, opc_ishr + itype.getTypeCodeOffset());
|
H A D | AssignSubtractExpression.java | 41 public AssignSubtractExpression(long where, Expression left, Expression right) { argument 42 super(ASGSUB, where, left, right); 49 asm.add(where, opc_isub + itype.getTypeCodeOffset());
|
H A D | AssignUnsignedShiftRightExpression.java | 41 public AssignUnsignedShiftRightExpression(long where, Expression left, Expression right) { argument 42 super(ASGURSHIFT, where, left, right); 49 asm.add(where, opc_iushr + itype.getTypeCodeOffset());
|
H A D | GreaterExpression.java | 42 public GreaterExpression(long where, Expression left, Expression right) { argument 43 super(GT, where, left, right); 50 return new BooleanExpression(where, a > b); 53 return new BooleanExpression(where, a > b); 56 return new BooleanExpression(where, a > b); 59 return new BooleanExpression(where, a > b); 67 return new LessExpression(where, right, left); 81 asm.add(where, whenTrue ? opc_if_icmpgt : opc_if_icmple, lbl, whenTrue); 87 asm.add(where, opc_lcmp); 91 asm.add(where, opc_fcmp [all...] |