Searched refs:where (Results 126 - 150 of 249) sorted by relevance

12345678910

/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DExpressionStatement.java45 public ExpressionStatement(long where, Expression expr) { argument
46 super(EXPRESSION, where);
H A DBinaryExpression.java46 BinaryExpression(int op, long where, Type type, Expression left, Expression right) { argument
47 super(op, where, type, right);
78 env.error(where, "invalid.args", opNames[op]);
162 return (left == null) ? right : new CommaExpression(where, left, right);
176 // env.error(where, "arithmetic.exception");
215 asm.add(true, where, opc_ldc, 0);
216 asm.add(true, where, opc_goto, l2);
218 asm.add(true, where, opc_ldc, 1);
H A DUnaryExpression.java44 UnaryExpression(int op, long where, Type type, Expression right) { argument
45 super(op, where, type);
78 env.error(where, "invalid.arg", opNames[op]);
160 // env.error(where, "arithmetic.exception");
H A DLocalMember.java81 public LocalMember(long where, ClassDefinition clazz, int modifiers, Type type, argument
83 super(where, clazz, modifiers, type, name, null, null);
127 LocalMember copy = new LocalMember(where, clazz, modifiers, type, name);
H A DContext.java393 public Expression findOuterLink(Environment env, long where, argument
404 return findOuterLink(env, where, reqc, f, false);
417 public Expression findOuterLink(Environment env, long where, argument
425 env.error(where, "undef.var", Identifier.lookup(nm,idThis));
427 env.error(where, "no.outer.arg", reqc, f.getClassDeclaration());
429 env.error(where, "no.static.meth.access",
432 env.error(where, "no.static.field.access", f.getName(),
442 Expression e = new ThisExpression(where, this);
467 thise = new ThisExpression(where, this);
479 thise = new ThisExpression(where, l
[all...]
H A DDeclarationStatement.java47 public DeclarationStatement(long where, int mod, Expression type, Statement args[]) { argument
48 super(DECLARATION, where);
59 env.error(where, "invalid.decl");
64 env.error(where, "declaration.with.label", labels[0]);
H A DBinaryAssignExpression.java44 BinaryAssignExpression(int op, long where, Expression left, Expression right) { argument
45 super(op, where, left.type, left, right);
H A DTryStatement.java51 public TryStatement(long where, Statement body, Statement args[]) { argument
52 super(TRY, where);
102 env.error(args[i].where, "catch.not.reached");
147 env.error(cs.where, "catch.not.thrown", def.getName());
183 env.error(where, "class.not.found", e.name, opNames[op]);
283 asm.add(where, opc_try, td);
289 asm.add(where, opc_goto, newctx.breakLabel);
295 asm.add(where, opc_goto, newctx.breakLabel);
H A DInlineMethodExpression.java46 InlineMethodExpression(long where, Type type, MemberDefinition field, Statement body) { argument
47 super(INLINEMETHOD, where, type);
H A DNaryExpression.java43 NaryExpression(int op, long where, Type type, Expression right, Expression args[]) { argument
44 super(op, where, type, right);
/openjdk9/jdk/test/com/sun/jdi/
H A DDeoptimizeWalk.sh36 # and then a 'where'. This will cause not all the frames to be shown.
84 cmd where
87 cmd where
H A DRedefineFinal.sh77 cmd where
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/debug/
H A DInternalDebugControl.java142 * @param where additional context
144 public static void debug(JShell state, PrintStream err, Exception ex, String where) { argument
146 err.printf("Fatal error: %s: %s\n", where, ex.getMessage());
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlDocWriter.java89 * @param where Position of the link in the file. Character '#' is not
94 public Content getHyperLink(String where, argument
96 return getHyperLink(getDocLink(where), label, "", "");
114 * @param sectionName The section name combined with where to which the link
116 * @param where The fragment combined with sectionName to which the link
121 public Content getHyperLink(SectionName sectionName, String where, argument
123 return getHyperLink(getDocLink(sectionName, where), label, "", "");
129 * @param where Position of the link in the file.
132 public DocLink getDocLink(String where) { argument
133 return DocLink.fragment(getName(where));
155 getDocLink(SectionName sectionName, String where) argument
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeJava.java84 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
96 @Function(name="synchronized", attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
111 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
122 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
133 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
144 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
155 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
227 * Nashorn supports a syntactic extension where a "new" expression followed by an argument is identical to
311 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
334 @Function(attributes = Attribute.NOT_ENUMERABLE, where
[all...]
H A DNativeEvalError.java51 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
55 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DLinkInfoImpl.java222 public String where = ""; field in class:LinkInfoImpl
339 public LinkInfoImpl where(String where) { argument
340 this.where = where;
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DSeeTagImpl.java60 * where of where#what - i.e. the class name (may be empty)
62 private String where; field in class:SeeTagImpl
65 * what of where#what - i.e. the member (may be null)
78 if (where != null) {
152 return where;
200 * parse @see part of comment. Determine 'where' and 'what'
295 where = seetext.substring(0, sharp);
302 where = "";
307 where
[all...]
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DBatchEnvironment.java47 * The stream where error message are printed.
889 long where,
967 new SourceClass(toplevelEnv, where, c, doc,
1003 public MemberDefinition makeMemberDefinition(Environment origEnv, long where, argument
1018 SourceMember f = new SourceMember(where, clazz, doc, modifiers,
1064 * The filename where the last errors have occurred
1086 boolean insertError(long where, String message) { argument
1090 || errors.where > where) {
1093 ErrorMessage newMsg = new ErrorMessage(where, messag
888 makeClassDefinition(Environment toplevelEnv, long where, IdentifierToken name, String doc, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], ClassDefinition outerClass) argument
1236 reportError(Object src, long where, String err, String msg) argument
1332 error(Object source, long where, String err, Object arg1, Object arg2, Object arg3) argument
[all...]
H A DSourceClass.java100 public SourceClass(Environment env, long where, argument
105 super(env.getSource(), where,
118 env.error(where, "static.class", this);
131 env.error(where, "inner.interface");
133 env.error(where, "static.inner.class", this);
142 env.error(where, "private.class", this);
146 env.error(where, "protected.class", this);
151 env.error(where, "warn.public.local.class", this);
181 env.error(where, "inner.redefined", thisName);
222 thisArg = new LocalMember(where, thi
482 noteUsedBy(ClassDefinition ref, long where, Environment env) argument
636 checkSourceFile(Environment env, long where) argument
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DLocation.java191 Location(Where where, Type type, int offset) { argument
192 setWhere(where);
198 int where = (value & WHERE_MASK) >> WHERE_SHIFT;
199 if (where == WHERE_ON_STACK) {
201 } else if (where == WHERE_IN_REGISTER) {
342 private void setWhere(Where where) { argument
343 value |= ((where.getValue() << WHERE_SHIFT) & WHERE_MASK);
/openjdk9/hotspot/test/serviceability/dcmd/compiler/
H A DCodeCacheTest.java80 private static boolean getFlagBool(String flag, String where) { argument
81 Matcher m = Pattern.compile(flag + "\\s+:?= (true|false)").matcher(where);
88 private static int getFlagInt(String flag, String where) { argument
89 Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
/openjdk9/jdk/make/src/classes/build/tools/dtdbuilder/
H A DPublicMapping.java78 String where = ln.substring(i, j);
79 put(id, baseStr + where);
/openjdk9/hotspot/test/gc/arguments/
H A DTestG1ConcMarkStepDurationMillis.java103 public static double getDoubleValue(String flag, String where) { argument
104 Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/
H A DHtmlDocWriter.java93 * @param where Position of the link in the file. Character '#' is not
98 public Content getHyperLink(String where, argument
100 return getHyperLink(getDocLink(where), label, "", "");
118 * @param sectionName The section name combined with where to which the link
120 * @param where The fragment combined with sectionName to which the link
125 public Content getHyperLink(SectionName sectionName, String where, argument
127 return getHyperLink(getDocLink(sectionName, where), label, "", "");
133 * @param where Position of the link in the file.
136 public DocLink getDocLink(String where) { argument
137 return DocLink.fragment(getName(where));
159 getDocLink(SectionName sectionName, String where) argument
[all...]

Completed in 158 milliseconds

12345678910