Searched refs:where (Results 101 - 125 of 184) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchParser.java86 public void packageDeclaration(long where, IdentifierToken t) { argument
96 env.error(where, "package.repeated");
119 public ClassDefinition beginClass(long where, String doc, int mod, argument
197 toplevelEnv.makeClassDefinition(toplevelEnv, where, t,
229 public void endClass(long where, ClassDefinition c) { argument
234 sourceClass.setEndPosition(where);
247 public void defineField(long where, ClassDefinition c, argument
284 env.error(where, "invalid.method.decl.qual");
287 env.error(where, "invalid.method.decl.name");
293 env.error(where, "invali
[all...]
H A DSourceMember.java75 public SourceMember(long where, ClassDefinition clazz, argument
79 super(where, clazz, modifiers, type, name, exp, value);
111 long where;
116 where = getWhere();
121 where = token.getWhere();
123 args.addElement(new LocalMember(where, clazz, mod,
355 // currently the only place where 'resolveNames' is used.
457 // This is where all checking of names appearing within the type
459 // Since only one location ('where') for error messages is provided,
461 env.resolve(where, getClassDefinitio
[all...]
H A DBatchEnvironment.java47 * The stream where error message are printed.
915 long where,
993 new SourceClass(toplevelEnv, where, c, doc,
1021 public MemberDefinition makeMemberDefinition(Environment origEnv, long where, argument
1036 SourceMember f = new SourceMember(where, clazz, doc, modifiers,
1082 * The filename where the last errors have occurred
1104 boolean insertError(long where, String message) { argument
1108 || errors.where > where) {
1111 ErrorMessage newMsg = new ErrorMessage(where, messag
914 makeClassDefinition(Environment toplevelEnv, long where, IdentifierToken name, String doc, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], ClassDefinition outerClass) argument
1254 reportError(Object src, long where, String err, String msg) argument
1350 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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DLinkInfoImpl.java203 public String where = ""; field in class:LinkInfoImpl
236 * @param where the value of the marker #.
241 public LinkInfoImpl (int context, ClassDoc classDoc, String where, String label, argument
244 this.where = where;
256 * @param where the value of the marker #.
260 public LinkInfoImpl (int context, ClassDoc classDoc, String where, String label, argument
263 this.where = where;
H A DLinkFactoryImpl.java64 (classLinkInfo.where == null || classLinkInfo.where.length() == 0) ?
80 classLinkInfo.where, label.toString(),
91 classDoc.qualifiedName(), classLinkInfo.where,
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.cpp243 void update(TickPosition where) { argument
244 switch(where) {
282 void update(TickPosition where) { ticks.update(where);} argument
393 interpretedNode(methodOop method, TickPosition where) : ProfilerNode() { argument
395 update(where);
430 compiledNode(methodOop method, TickPosition where) : ProfilerNode() { argument
432 update(where);
466 stubNode(methodOop method, const char* name, TickPosition where) : ProfilerNode() { argument
469 update(where);
508 adapterNode(TickPosition where) argument
535 runtimeStubNode(const CodeBlob* stub, const char* name, TickPosition where) argument
580 unknown_compiledNode(const CodeBlob* cb, TickPosition where) argument
615 vmNode(const TickPosition where) argument
620 vmNode(const char* name, const TickPosition where) argument
664 interpreted_update(methodOop method, TickPosition where) argument
681 compiled_update(methodOop method, TickPosition where) argument
698 stub_update(methodOop method, const char* name, TickPosition where) argument
715 adapter_update(TickPosition where) argument
732 runtime_stub_update(const CodeBlob* stub, const char* name, TickPosition where) argument
750 unknown_compiled_update(const CodeBlob* cb, TickPosition where) argument
767 vm_update(TickPosition where) argument
771 vm_update(const char* name, TickPosition where) argument
945 record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks) argument
971 record_compiled_tick(JavaThread* thread, frame fr, TickPosition where) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DSeeTagImpl.java47 * where of where#what - i.e. the class name (may be empty)
49 private String where; field in class:SeeTagImpl
52 * what of where#what - i.e. the member (may be null)
65 if (where != null) {
85 return where;
133 * parse @see part of comment. Determine 'where' and 'what'
228 where = seetext.substring(0, sharp);
235 where = "";
240 where
[all...]
/openjdk7/jdk/test/java/nio/charset/spi/
H A Dbasic.sh94 for where in ext app; do
97 echo "LC_ALL=$LC_ALL where=$where security=$security"
99 if [ $where = ext ]; then
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DIfStatement.java48 public IfStatement(long where, Expression cond, Statement ifTrue, Statement ifFalse) { argument
49 super(IF, where);
129 return eliminate(env, new ExpressionStatement(where, cond).inline(env, ctx));
132 cond = new NotExpression(cond.where, cond).inlineValue(env, ctx);
133 return eliminate(env, new IfStatement(where, cond, ifFalse, null));
178 asm.add(true, where, opc_goto, l2);
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 DSwitchStatement.java48 public SwitchStatement(long where, Expression expr, Statement args[]) { argument
49 super(SWITCH, where);
85 env.error(s.where, "duplicate.label", Ivalue);
100 env.error(s.where, "switch.overflow",
122 env.error(s.where, "const.expr.required");
127 env.error(s.where, "duplicate.default");
215 asm.add(where, opc_tableswitch, sw);
225 sw.addTableCase(((IntegerExpression)e).value, s.where);
230 sw.addTableDefault(s.where);
H A DExprExpression.java44 public ExprExpression(long where, Expression right) { argument
45 super(EXPR, where, right.type, right);
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, new Integer(0));
216 asm.add(true, where, opc_goto, l2);
218 asm.add(true, where, opc_ldc, new Integer(1));
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 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 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]);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DParserActions.java83 void defineField(long where, ClassDefinition c, argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapContent.java44 * to take advantage of common behavior where most changes are
121 * @param where the starting position >= 0, < length()
127 public UndoableEdit insertString(int where, String str) throws BadLocationException { argument
128 if (where > length() || where < 0) {
132 replace(where, 0, chars, chars.length);
133 return new InsertUndo(where, str.length());
139 * @param where the starting position >= 0, where + nitems < length()
145 public UndoableEdit remove(int where, in argument
165 getString(int where, int len) argument
183 getChars(int where, int len, Segment chars) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DDeoptimizeWalk.sh35 # and then a 'where'. This will cause not all the frames to be shown.
83 cmd where
86 cmd where
H A DRedefineFinal.sh76 cmd where
/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/hotspot/agent/src/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);

Completed in 134 milliseconds

12345678