Searched refs:where (Results 76 - 100 of 249) sorted by relevance

12345678910

/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DBinaryEqualityExpression.java40 public BinaryEqualityExpression(int op, long where, Expression left, Expression right) { argument
41 super(op, where, Type.tBoolean, left, right);
58 env.error(where, "incompatible.type",
61 env.error(where, "class.not.found", e.name, opNames[op]);
H A DBooleanExpression.java46 public BooleanExpression(long where, boolean value) { argument
47 super(BOOLEANVAL, where, Type.tBoolean);
105 asm.add(where, opc_goto, lbl);
109 asm.add(where, opc_ldc, value ? 1 : 0);
H A DNewInstanceExpression.java49 public NewInstanceExpression(long where, Expression right, Expression args[]) { argument
50 super(NEWINSTANCE, where, Type.tError, right, args);
52 public NewInstanceExpression(long where, Expression right, argument
55 this(where, right, args);
108 env.error(where, "unqualified.name.required", typeName);
113 env.error(where, "invalid.field.reference",
124 right = new TypeExpression(right.where, Type.tClass(nm));
126 env.resolve(right.where, ctx.field.getClassDefinition(),
134 right = new TypeExpression(right.where, right.toType(env, ctx));
140 env.error(where, "ambi
346 insertOuterLink(Environment env, Context ctx, long where, ClassDefinition def, Expression outerArg, Expression args[]) argument
[all...]
H A DArrayAccessExpression.java57 public ArrayAccessExpression(long where, Expression right, Expression index) { argument
58 super(ARRAYACCESS, where, Type.tError, right);
68 env.error(where, "array.index.required");
76 env.error(where, "not.array", right.type);
98 loc.right = new TypeExpression(where, atype);
102 env.error(where, "array.index.required");
148 env.error(index.where, "array.dim.in.type");
223 asm.add(where, opc_baload);
226 asm.add(where, opc_caload);
229 asm.add(where, opc_saloa
[all...]
H A DFinallyStatement.java54 public FinallyStatement(long where, Statement body, Statement finalbody) { argument
55 super(FINALLY, where);
63 // public FinallyStatement(long where, Statement init, Statement body, int junk) {
64 // this(where, body, null);
82 long where = init.getWhere();
93 env.error(where, "invalid.decl");
97 tryExpr = new IdentifierExpression(where, field);
101 env.error(where, "invalid.expr");
110 env.error(where, "invalid.method.invoke", type);
127 env.error(where, "clas
[all...]
H A DInstanceOfExpression.java44 public InstanceOfExpression(long where, Expression left, Expression right) { argument
45 super(INSTANCEOF, where, Type.tBoolean, left, right);
53 right = new TypeExpression(right.where, right.toType(env, ctx));
61 env.error(right.where, "invalid.arg.type", right.type, opNames[op]);
66 env.error(where, "invalid.instanceof", left.type, right.type);
69 env.error(where, "class.not.found", e.name, opNames[op]);
111 asm.add(where, opc_instanceof, env.getClassDeclaration(right.type));
113 asm.add(where, opc_instanceof, right.type);
118 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DStatement.java47 Statement(int op, long where) { argument
48 super(op, where);
96 env.error(e.where, "invalid.label");
148 env.error(where, "nested.duplicate.label", labels[i]);
160 env.error(where, "nested.duplicate.label", labels[i]);
171 /** This is called in contexts where declarations are valid. */
178 env.error(where, "stat.not.reached");
197 s = new CompoundStatement(where, args);
253 asm.add(where, opc_istore + save.getTypeCodeOffset(), num);
260 asm.add(where, opc_pop
[all...]
H A DMethodExpression.java50 public MethodExpression(long where, Expression right, Identifier id, Expression args[]) { argument
51 super(METHOD, where, Type.tError, right, args);
54 public MethodExpression(long where, Expression right, MemberDefinition field, Expression args[]) { argument
55 super(METHOD, where, field.getType().getReturnType(), right, args);
66 public MethodExpression(long where, Expression right, argument
68 this(where, right, field, args);
107 insertOuterLink(env, ctx, where, conCls, conOuter, args);
145 env.error(where, "inherited.hides.method",
157 env.error(where, "invalid.constr.invoke");
193 env.error(where, "const
[all...]
H A DThrowStatement.java45 public ThrowStatement(long where, Expression expr) { argument
46 super(THROW, where);
67 env.error(where, "throw.not.throwable", def);
71 env.error(expr.where, "throw.not.throwable", expr.type);
74 env.error(where, "class.not.found", e.name, opNames[op]);
112 asm.add(where, opc_athrow);
H A DVarDeclarationStatement.java47 public VarDeclarationStatement(long where, Expression expr) { argument
48 super(VARDECLARATION, where);
51 public VarDeclarationStatement(long where, LocalMember field, Expression expr) { argument
52 super(VARDECLARATION, where);
62 env.error(where, "declaration.with.label", labels[0]);
67 env.error(where, "local.class.redefined", field.getName());
77 env.error(where, "class.not.found", ee.name, opNames[op]);
104 env.error(array.index.where, "array.dim.in.type");
113 env.error(where, "local.redefined", id);
116 field = new LocalMember(e.where, ct
[all...]
H A DBinaryLogicalExpression.java41 public BinaryLogicalExpression(int op, long where, Expression left, Expression right) { argument
42 super(op, where, Type.tBoolean, left, right);
H A DBinaryCompareExpression.java40 public BinaryCompareExpression(int op, long where, Expression left, Expression right) { argument
41 super(op, where, Type.tBoolean, left, right);
H A DBinaryBitExpression.java42 public BinaryBitExpression(int op, long where, Expression left, Expression right) { argument
43 super(op, where, left.type, left, right);
H A DBinaryArithmeticExpression.java40 public BinaryArithmeticExpression(int op, long where, Expression left, Expression right) { argument
41 super(op, where, left.type, left, right);
H A DOrExpression.java43 public OrExpression(long where, Expression left, Expression right) { argument
44 super(OR, where, left, right);
78 return new BooleanExpression(where, a || b);
96 return new CommaExpression(where, left, right).simplify();
H A DAndExpression.java43 public AndExpression(long where, Expression left, Expression right) { argument
44 super(AND, where, left, right);
78 return new BooleanExpression(where, a && b);
90 return new CommaExpression(where, left, right).simplify();
/openjdk9/jdk/test/com/sun/jdi/
H A DRedefine-g.sh76 cmd where
80 cmd where
84 cmd where
88 cmd where
/openjdk9/hotspot/src/share/vm/runtime/
H A Dfprofiler.hpp144 void record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks);
145 void record_compiled_tick (JavaThread* thread, frame fr, TickPosition where);
146 void interpreted_update(Method* method, TickPosition where);
147 void compiled_update (Method* method, TickPosition where);
148 void stub_update (Method* method, const char* name, TickPosition where);
149 void adapter_update (TickPosition where);
151 void runtime_stub_update(const CodeBlob* stub, const char* name, TickPosition where);
152 void unknown_compiled_update (const CodeBlob* cb, TickPosition where);
154 void vm_update (TickPosition where);
155 void vm_update (const char* name, TickPosition where);
[all...]
/openjdk9/nashorn/buildtools/nasgen/src/jdk/nashorn/internal/tools/nasgen/
H A DMemberInfo.java105 private Where where; field in class:MemberInfo
267 return where;
270 void setWhere(final Where where) { argument
271 this.where = where;
287 return kind == Kind.GETTER && where == Where.INSTANCE;
296 return kind == Kind.SETTER && where == Where.INSTANCE;
300 return kind == Kind.PROPERTY && where == Where.INSTANCE;
304 return kind == Kind.FUNCTION && where == Where.INSTANCE;
308 return kind == Kind.GETTER && where
[all...]
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DEnvironment.java113 // If the name is of the form 'ClassName.N$localName', where N is
231 public boolean resolve(long where, ClassDefinition c, Type t) { argument
240 def = getQualifiedClassDefinition(where, nm, c, false);
244 error(where, "cant.access.class", def);
247 def.noteUsedBy(c, where, env);
249 error(where, "ambig.class", ee.name1, ee.name2);
257 env.error(where, "class.and.package",
261 env.error(where, "io.exception", "package check");
264 // error(where, "class.not.found", e.name, "declaration");
265 error(where, "clas
290 resolveByName(long where, ClassDefinition c, Identifier nm) argument
294 resolveExtendsByName(long where, ClassDefinition c, Identifier nm) argument
298 resolveByName(long where, ClassDefinition c, Identifier nm, boolean isExtends) argument
340 getQualifiedClassDefinition(long where, Identifier nm, ClassDefinition ctxClass, boolean isExtends) argument
580 makeClassDefinition(Environment origEnv, long where, IdentifierToken name, String doc, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], ClassDefinition outerClass) argument
595 makeMemberDefinition(Environment origEnv, long where, ClassDefinition clazz, String doc, int modifiers, Type type, Identifier name, IdentifierToken argNames[], IdentifierToken expIds[], Object value) argument
875 error(Object source, long where, String err, Object arg1, Object arg2, Object arg3) argument
878 error(long where, String err, Object arg1, Object arg2, Object arg3) argument
881 error(long where, String err, Object arg1, Object arg2) argument
884 error(long where, String err, Object arg1) argument
887 error(long where, String err) argument
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeMath.java55 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
59 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
63 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
67 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
71 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
75 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
79 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
83 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
94 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
146 @Function(attributes = Attribute.NOT_ENUMERABLE, where
[all...]
H A DNativeDebug.java77 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
92 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
107 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
123 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
139 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
152 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
164 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
176 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
192 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
204 @Function(attributes = Attribute.NOT_ENUMERABLE, where
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DStringContent.java91 * @param where the starting position >= 0 && < length()
97 public UndoableEdit insertString(int where, String str) throws BadLocationException { argument
98 if (where >= count || where < 0) {
102 replace(where, 0, chars, 0, chars.length);
104 updateMarksForInsert(where, str.length());
106 return new InsertUndo(where, str.length());
110 * Removes part of the content. where + nitems must be &lt; length().
112 * @param where the starting position &gt;= 0
118 public UndoableEdit remove(int where, in argument
141 getString(int where, int len) argument
157 getChars(int where, int len, Segment chars) argument
[all...]
/openjdk9/langtools/test/tools/javac/lambda/
H A DLambdaTestStrictFP.java57 private static void check(double expected, double got, String where) { argument
59 throw new AssertionError(where + ": Non-strictfp " + got + " != " + expected);
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/asm/
H A DSwitchData.java97 public void addTableCase(int index, long where) { argument
99 whereCaseTab.put(Integer.valueOf(index), Long.valueOf(where));
103 public void addTableDefault(long where) { argument
105 ((Hashtable)whereCaseTab).put("default", Long.valueOf(where));

Completed in 194 milliseconds

12345678910