Searched refs:where (Results 51 - 75 of 249) sorted by relevance

12345678910

/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DPreIncExpression.java41 public PreIncExpression(long where, Expression right) { argument
42 super(PREINC, where, right);
H A DPreDecExpression.java41 public PreDecExpression(long where, Expression right) { argument
42 super(PREDEC, where, right);
H A DIntExpression.java41 public IntExpression(long where, int value) { argument
42 super(INTVAL, where, Type.tInt, value);
H A DFieldUpdater.java53 private long where; field in class:FieldUpdater
78 public FieldUpdater(long where, MemberDefinition field, argument
80 this.where = where;
106 return new FieldUpdater(where, field, base.copyInline(ctx), getter, setter);
135 asm.add(where, opc_dup);
138 asm.add(where, opc_dup_x1);
141 asm.add(where, opc_dup_x2);
149 asm.add(where, opc_dup2);
152 asm.add(where, opc_dup2_x
[all...]
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 DIncDecExpression.java45 public IncDecExpression(int op, long where, Expression right) { argument
46 super(op, where, right.type, right);
58 env.error(where, "invalid.arg.type", right.type, opNames[op]);
115 asm.add(where, opc_ldc, 1);
116 asm.add(where, inc ? opc_iadd : opc_isub);
117 asm.add(where, opc_i2b);
120 asm.add(where, opc_ldc, 1);
121 asm.add(where, inc ? opc_iadd : opc_isub);
122 asm.add(where, opc_i2s);
125 asm.add(where, opc_ld
[all...]
H A DThisExpression.java47 public ThisExpression(long where) { argument
48 super(THIS, where, Type.tObject);
50 protected ThisExpression(int op, long where) { argument
51 super(op, where, Type.tObject);
53 public ThisExpression(long where, LocalMember field) { argument
54 super(THIS, where, Type.tObject);
58 public ThisExpression(long where, Context ctx) { argument
59 super(THIS, where, Type.tObject);
67 public ThisExpression(long where, Expression outerArg) { argument
68 this(where);
[all...]
H A DFieldExpression.java54 public FieldExpression(long where, Expression right, Identifier id) { argument
55 super(FIELD, where, Type.tError, right);
58 public FieldExpression(long where, Expression right, MemberDefinition field) { argument
59 super(FIELD, where, field.getType(), right);
117 if (env.resolve(where, ctxClass, t)) {
140 env.error(where, "inner.class.expected", id, rightClass);
148 env.error(where, "no.type.access", id, rightClass, ctxClass);
153 env.error(where, "invalid.protected.type.use", id, ctxClass, rty);
160 innerClass.noteUsedBy(ctxClass, where, env);
166 env.error(where, "clas
391 isTypeAccessible(long where, Environment env, Type t, ClassDefinition c) argument
979 checkFinalAssign(Environment env, Context ctx, Vset vset, long where, MemberDefinition field) argument
[all...]
H A DSynchronizedStatement.java50 public SynchronizedStatement(long where, Expression expr, Statement body) { argument
51 super(SYNCHRONIZED, where);
65 env.error(expr.where, "synchronized.null");
126 LocalMember f1 = new LocalMember(where, clazz, 0, Type.tObject, null);
127 LocalMember f2 = new LocalMember(where, clazz, 0, Type.tInt, null);
137 asm.add(where, opc_astore, num1);
138 asm.add(where, opc_aload, num1);
139 asm.add(where, opc_monitorenter);
143 asm.add(where, opc_try, td);
147 asm.add(where, opc_no
[all...]
H A DAssignAddExpression.java41 public AssignAddExpression(long where, Expression left, Expression right) { argument
42 super(ASGADD, where, left, right);
69 asm.add(where, opc_new, c);
70 asm.add(where, opc_dup);
75 // where <buffer> isn't yet initialized, and the <getter args>
86 asm.add(where, opc_invokespecial, f);
92 asm.add(where, opc_invokevirtual, f);
110 asm.add(where, opc_new, c);
112 asm.add(where, opc_dup_x1);
114 asm.add(where, opc_swa
[all...]
H A DReturnStatement.java46 public ReturnStatement(long where, Expression expr) { argument
47 super(RETURN, where);
63 env.error(where, "return.inside.static.initializer");
70 env.error(where, "return.with.value.constr", ctx.field);
72 env.error(where, "return.with.value", ctx.field);
78 env.error(where, "return.without.value", ctx.field);
147 new ExpressionStatement(where, e),
148 new InlineReturnStatement(where, null)
150 return new CompoundStatement(where, body);
152 return new InlineReturnStatement(where,
[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 DDivRemExpression.java42 public DivRemExpression(int op, long where, Expression left, Expression right) { argument
43 super(op, where, left, right);
63 env.error(where, "arithmetic.exception");
H A DTypeExpression.java42 public TypeExpression(long where, Type type) { argument
43 super(TYPE, where, type);
57 env.error(where, "invalid.term");
H A DAddExpression.java41 public AddExpression(long where, Expression left, Expression right) { argument
42 super(ADD, where, left, right);
68 return new IntExpression(where, a + b);
71 return new LongExpression(where, a + b);
74 return new FloatExpression(where, a + b);
77 return new DoubleExpression(where, a + b);
80 return new StringExpression(where, a + b);
94 return new StringExpression(where, buffer.toString());
178 right = new StringExpression(right.where, "null");
180 left = new StringExpression(left.where, "nul
[all...]
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, value);
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 DPositiveExpression.java41 public PositiveExpression(long where, Expression right) { argument
42 super(POS, where, right.type, right);
H A DIdentifierExpression.java48 public IdentifierExpression(long where, Identifier id) { argument
49 super(IDENT, where, Type.tError);
55 public IdentifierExpression(long where, MemberDefinition field) { argument
56 super(IDENT, where, field.getType());
82 env.error(where, "assign.to.uplevel", id);
87 env.error(where, "assign.to.final", id);
89 env.error(where, "assign.to.blank.final", id);
96 where, field);
108 env.error(where, "invalid.uplevel", id);
111 env.error(where, "va
[all...]
H A DCatchStatement.java51 public CatchStatement(long where, Expression texpr, IdentifierToken id, Statement body) { argument
52 super(CATCH, where);
60 public CatchStatement(long where, Expression texpr, Identifier id, Statement body) { argument
61 super(CATCH, where);
77 env.error(where, "local.redefined", id);
83 env.error(where, "catch.not.throwable", type);
88 env.error(where, "catch.not.throwable", def);
92 field = new LocalMember(where, ctx.field.getClassDefinition(), mod, type, id);
98 env.error(where, "class.not.found", e.name, opNames[op]);
149 asm.add(where, opc_astor
[all...]
H A DExpression.java46 Expression(int op, long where, Type type) { argument
47 super(op, where);
144 env.error(where, "invalid.type.expr");
149 * Convert an expresion to a type in a context where a qualified
155 env.error(where, "invalid.type.expr");
207 env.error(where, "invalid.lhs.assignment");
248 env.error(where, "invalid.arg", opNames[outside.op]);
250 env.error(where, "invalid.lhs.assignment");
379 // happen in cases where isConstant() is able to classify
424 asm.add(where, whenTru
[all...]
/openjdk9/hotspot/src/share/vm/code/
H A Dlocation.hpp79 assert( where () == where_ , "" );
100 Where where() const { return (Where) ((_value & WHERE_MASK) >> WHERE_SHIFT);} function in class:VALUE_OBJ_CLASS_SPEC
105 bool is_register() const { return where() == in_register; }
106 bool is_stack() const { return where() == on_stack; }
108 int stack_offset() const { assert(where() == on_stack, "wrong Where"); return offset()<<LogBytesPerInt; }
109 int register_number() const { assert(where() == in_register, "wrong Where"); return offset() ; }
111 VMReg reg() const { assert(where() == in_register, "wrong Where"); return VMRegImpl::as_VMReg(offset()) ; }
H A Dlocation.cpp32 switch (where()) {
38 switch (where()) {
41 default: st->print("Wrong location where %d", where());
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DSlotAllocator.java52 int slot = _firstAvailableSlot, where = 0;
61 while (where < limit) {
62 if (slot + size <= _slotsTaken[where]) {
64 for (int j = limit - 1; j >= where; j--)
69 slot = _slotsTaken[where++] + 1;
74 _slotsTaken[where + j] = slot + j;
/openjdk9/langtools/test/tools/javac/lambda/
H A DLambdaTestStrictFPMethod.java52 strictfp void check(double expected, double got, String where) { argument
54 throw new AssertionError(where + ": Non-strictfp " + got + " != " + expected);

Completed in 125 milliseconds

12345678910