Searched defs:where (Results 51 - 75 of 153) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DSuperExpression.java44 public SuperExpression(long where) { argument
45 super(SUPER, where);
51 public SuperExpression(long where, Expression outerArg) { argument
52 super(where, outerArg);
56 public SuperExpression(long where, Context ctx) { argument
57 super(where, ctx);
68 env.error(where, "undef.var.super", idSuper);
86 env.error(where, "undef.var", idSuper);
H A DUnsignedShiftRightExpression.java40 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 DArrayExpression.java43 public ArrayExpression(long where, Expression args[]) { argument
44 super(ARRAY, where, Type.tError, null, args);
51 env.error(where, "invalid.array.expr");
57 env.error(where, "invalid.array.init", t);
78 e = (e == null) ? args[i] : new CommaExpression(where, e, args[i]);
95 asm.add(where, opc_ldc, new Integer(args.length));
97 case TC_BOOLEAN: asm.add(where, opc_newarray, new Integer(T_BOOLEAN)); break;
98 case TC_BYTE: asm.add(where, opc_newarray, new Integer(T_BYTE)); break;
99 case TC_SHORT: asm.add(where, opc_newarray, new Integer(T_SHORT)); break;
100 case TC_CHAR: asm.add(where, opc_newarra
[all...]
H A DAssignExpression.java46 public AssignExpression(long where, Expression left, Expression right) { argument
47 super(ASSIGN, where, left, right);
H A DBreakStatement.java46 public BreakStatement(long where, Identifier lbl) { argument
47 super(BREAK, where);
60 env.error(where, "branch.to.uplevel", lbl);
65 env.error(where, "label.not.found", lbl);
67 env.error(where, "invalid.break");
91 asm.add(where, opc_goto, destctx.breakLabel);
H A DCastExpression.java44 public CastExpression(long where, Expression left, Expression right) { argument
45 super(CAST, where, left.type, left, right);
67 right = new ConvertExpression(where, type, right);
71 env.error(where, "class.not.found", e.name, opNames[op]);
75 env.error(where, "invalid.cast", right.type, type);
H A DContinueStatement.java46 public ContinueStatement(long where, Identifier lbl) { argument
47 super(CONTINUE, where);
68 env.error(where, "branch.to.uplevel", lbl);
73 env.error(where, "invalid.continue");
77 env.error(where, "label.not.found", lbl);
79 env.error(where, "invalid.continue");
102 asm.add(where, opc_goto, destctx.contLabel);
H A DEqualExpression.java42 public EqualExpression(long where, Expression left, Expression right) { argument
43 super(EQ, 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);
62 return new BooleanExpression(where, a == b);
70 return new EqualExpression(where, right, left);
85 asm.add(where, whenTrue ? opc_if_icmpeq : opc_if_icmpne, lbl, whenTrue);
91 asm.add(where, opc_lcm
[all...]
H A DGreaterExpression.java42 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...]
H A DGreaterOrEqualExpression.java42 public GreaterOrEqualExpression(long where, Expression left, Expression right) { argument
43 super(GE, 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 LessOrEqualExpression(where, right, left);
81 asm.add(where, whenTrue ? opc_if_icmpge : opc_if_icmplt, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmp
[all...]
H A DInlineMethodExpression.java46 InlineMethodExpression(long where, Type type, MemberDefinition field, Statement body) { argument
47 super(INLINEMETHOD, where, type);
H A DInlineNewInstanceExpression.java47 InlineNewInstanceExpression(long where, Type type, MemberDefinition field, Statement body) { argument
48 super(INLINENEWINSTANCE, where, type);
91 asm.add(where, opc_new, field.getClassDeclaration());
96 asm.add(where, opc_astore, new Integer(v.number));
100 asm.add(where, opc_aload, new Integer(v.number));
H A DInlineReturnStatement.java45 public InlineReturnStatement(long where, Expression expr) { argument
46 super(INLINERETURN, where);
98 asm.add(where, opc_goto, destctx.breakLabel);
H A DIntegerExpression.java43 IntegerExpression(int op, long where, Type type, int value) { argument
44 super(op, where, type);
94 asm.add(where, opc_ldc, new Integer(value));
H A DLessExpression.java42 public LessExpression(long where, Expression left, Expression right) { argument
43 super(LT, 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 GreaterExpression(where, right, left);
81 asm.add(where, whenTrue ? opc_if_icmplt : opc_if_icmpge, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmp
[all...]
H A DLessOrEqualExpression.java42 public LessOrEqualExpression(long where, Expression left, Expression right) { argument
43 super(LE, 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 GreaterOrEqualExpression(where, right, left);
81 asm.add(where, whenTrue ? opc_if_icmple : opc_if_icmpgt, lbl, whenTrue);
87 asm.add(where, opc_lcmp);
91 asm.add(where, opc_fcmp
[all...]
H A DNewArrayExpression.java46 public NewArrayExpression(long where, Expression right, Expression args[]) { argument
47 super(NEWARRAY, where, Type.tError, right, args);
50 public NewArrayExpression(long where, Expression right, Expression args[], Expression init) { argument
51 this(where, right, args);
66 env.error(where, "array.dim.missing");
71 env.error(dim.where, "invalid.array.dim");
100 e = (e != null) ? new CommaExpression(where, e, args[i]) : args[i];
104 e = (e != null) ? new CommaExpression(where, e, init) : init;
130 asm.add(where, opc_multianewarray, new ArrayData(type, t));
136 asm.add(where, opc_newarra
[all...]
H A DNode.java40 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 DNotEqualExpression.java42 public NotEqualExpression(long where, Expression left, Expression right) { argument
43 super(NE, 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);
62 return new BooleanExpression(where, a != b);
70 return new NotEqualExpression(where, right, left);
85 asm.add(where, whenTrue ? opc_if_icmpne : opc_if_icmpeq, lbl, whenTrue);
91 asm.add(where, opc_lcm
[all...]
H A DStringExpression.java44 public StringExpression(long where, String value) { argument
45 super(STRINGVAL, where, Type.tString);
60 asm.add(where, opc_ldc, this);
H A DTypeExpression.java42 public TypeExpression(long where, Type type) { argument
43 super(TYPE, where, type);
57 env.error(where, "invalid.term");
/openjdk7/jdk/src/share/classes/sun/misc/
H A DMessageUtils.java120 public static void where() { method in class:MessageUtils
/openjdk7/jdk/test/com/sun/jdi/redefine/
H A DRedefineTest.java48 public static void show(String where){ argument
49 System.out.println("Returned: " + where);
52 public static void lastly(String where){ argument
57 String where = "";
59 where = sub.foo(where);
60 show(where);
62 lastly(where);
124 LocalVariable lv = frame.visibleVariableByName("where");
127 println("Value of where
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DInstruction.java42 long where; field in class:Instruction
57 public Instruction(long where, int opc, Object value, boolean flagCondInverted) { argument
58 this.where = where;
67 public Instruction(boolean flagNoCovered, long where, int opc, Object value) { argument
68 this.where = where;
77 public Instruction(long where, int opc, boolean flagNoCovered) { argument
78 this.where = where;
87 Instruction(long where, int opc, Object value) argument
[all...]
H A DSwitchData.java97 public void addTableCase(int index, long where) { argument
99 whereCaseTab.put(new Integer(index), new Long(where));
101 public void addTableDefault(long where) { argument
103 whereCaseTab.put("default", new Long(where));

Completed in 43 milliseconds

1234567