Searched refs:where (Results 26 - 50 of 249) sorted by relevance

12345678910

/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DAssignSubtractExpression.java41 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 DNullExpression.java42 public NullExpression(long where) { argument
43 super(NULL, where, Type.tNull);
61 asm.add(where, opc_aconst_null);
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 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 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, args.length);
97 case TC_BOOLEAN: asm.add(where, opc_newarray, T_BOOLEAN); break;
98 case TC_BYTE: asm.add(where, opc_newarray, T_BYTE); break;
99 case TC_SHORT: asm.add(where, opc_newarray, T_SHORT); break;
100 case TC_CHAR: asm.add(where, opc_newarra
[all...]
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 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 DBitNotExpression.java41 public BitNotExpression(long where, Expression right) { argument
42 super(BITNOT, where, right.type, right);
61 return new IntExpression(where, ~a);
64 return new LongExpression(where, ~a);
83 asm.add(where, opc_ldc, -1);
84 asm.add(where, opc_ixor);
86 asm.add(where, opc_ldc2_w, -1L);
87 asm.add(where, opc_lxor);
H A DBitAndExpression.java41 public BitAndExpression(long where, Expression left, Expression right) { argument
42 super(BITAND, where, left, right);
49 return new BooleanExpression(where, a & b);
52 return new IntExpression(where, a & b);
55 return new LongExpression(where, a & b);
67 return new CommaExpression(where, right, left).simplify();
69 return new CommaExpression(where, left, right).simplify();
77 asm.add(where, opc_iand + type.getTypeCodeOffset());
H A DBitOrExpression.java41 public BitOrExpression(long where, Expression left, Expression right) { argument
42 super(BITOR, where, left, right);
49 return new BooleanExpression(where, a | b);
52 return new IntExpression(where, a | b);
55 return new LongExpression(where, a | b);
67 return new CommaExpression(where, right, left).simplify();
69 return new CommaExpression(where, left, right).simplify();
77 asm.add(where, opc_ior + type.getTypeCodeOffset());
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 DShortExpression.java41 public ShortExpression(long where, short value) { argument
42 super(SHORTVAL, where, Type.tShort, value);
H A DByteExpression.java41 public ByteExpression(long where, byte value) { argument
42 super(BYTEVAL, where, Type.tByte, value);
H A DCharExpression.java41 public CharExpression(long where, char value) { argument
42 super(CHARVAL, where, Type.tChar, value);
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 DNegativeExpression.java41 public NegativeExpression(long where, Expression right) { argument
42 super(NEG, where, right.type, right);
65 return new IntExpression(where, -a);
68 return new LongExpression(where, -a);
71 return new FloatExpression(where, -a);
74 return new DoubleExpression(where, -a);
92 asm.add(where, opc_ineg + type.getTypeCodeOffset());
H A DFloatExpression.java44 public FloatExpression(long where, float value) { argument
45 super(FLOATVAL, where, Type.tFloat);
75 asm.add(where, opc_ldc, new Float(value));
H A DDoubleExpression.java44 public DoubleExpression(long where, double value) { argument
45 super(DOUBLEVAL, where, Type.tDouble);
75 asm.add(where, opc_ldc2_w, new Double(value));
H A DLongExpression.java44 public LongExpression(long where, long value) { argument
45 super(LONGVAL, where, Type.tLong);
74 asm.add(where, opc_ldc2_w, value);
H A DLengthExpression.java42 public LengthExpression(long where, Expression right) { argument
43 super(LENGTH, where, Type.tInt, right);
52 env.error(where, "invalid.length", right.type);
62 asm.add(where, opc_arraylength);
H A DNotExpression.java43 public NotExpression(long where, Expression right) { argument
44 super(NOT, where, Type.tBoolean, right);
81 return new BooleanExpression(where, !a);
114 return new NotEqualExpression(where, bin.left, bin.right);
116 return new EqualExpression(where, bin.left, bin.right);
118 return new GreaterOrEqualExpression(where, bin.left, bin.right);
120 return new GreaterExpression(where, bin.left, bin.right);
122 return new LessOrEqualExpression(where, bin.left, bin.right);
124 return new LessExpression(where, bin.left, bin.right);
142 asm.add(where, opc_ld
[all...]
H A DPostIncExpression.java41 public PostIncExpression(long where, Expression right) { argument
42 super(POSTINC, where, right);
H A DPostDecExpression.java41 public PostDecExpression(long where, Expression right) { argument
42 super(POSTDEC, where, right);
/openjdk9/hotspot/test/gc/arguments/
H A DFlagsValue.java27 public static boolean getFlagBoolValue(String flag, String where) { argument
28 Matcher m = Pattern.compile(flag + "\\s+:?= (true|false)").matcher(where);
35 public static long getFlagLongValue(String flag, String where) { argument
36 Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
/openjdk9/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java43 * A test case where we instantiate an ExceptionalWombatMBean (or a
45 * the methods indicated by {@code where}
49 public final EnumSet<WHERE> where; field in class:PostExceptionTest.Case
50 public Case(Throwable t,EnumSet<WHERE> where) { argument
51 this.t=t; this.where=where;
61 public static Case caze(Throwable t, EnumSet<WHERE> where) { argument
62 return new Case(t,where);
102 failures+=test(mbs,n,how,caze.t,caze.where);
114 // mbs: The MBeanServer where th
122 test(MBeanServer mbs, ObjectName name, CREATE how, Throwable t, EnumSet<WHERE> where) argument
422 create(Throwable t, EnumSet<WHERE> where, MBeanServer server, ObjectName name) argument
460 private final EnumSet<WHERE> where; field in class:PostExceptionTest.ExceptionalWombat
463 ExceptionalWombat(Throwable t, EnumSet<WHERE> where) argument
[all...]

Completed in 120 milliseconds

12345678910