Searched defs:where (Results 101 - 125 of 153) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/sun/tools/tree/
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 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 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 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 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 DWhileStatement.java47 public WhileStatement(long where, Expression cond, Statement body) { argument
48 super(WHILE, where);
114 asm.add(where, opc_goto, newctx.contLabel);
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 DAssignOpExpression.java48 public AssignOpExpression(int op, long where, Expression left, Expression right) { argument
49 super(op, where, left, right);
65 env.error(where, "incompatible.type",
103 right = new ConvertExpression(where, Type.tInt, right);
234 asm.add(where, opc_iinc, operands);
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 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 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 DUplevelReference.java365 long where, MemberDefinition conField) {
372 next.codeArguments(env, ctx, asm, where, conField);
381 long where, MemberDefinition conField) {
394 next.codeInitialization(env, ctx, asm, where, conField);
364 codeArguments(Environment env, Context ctx, Assembler asm, long where, MemberDefinition conField) argument
380 codeInitialization(Environment env, Context ctx, Assembler asm, long where, MemberDefinition conField) argument
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 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...]
/openjdk7/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()) ; }
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) { argument
99 if (have_fmt != need_fmt || where + size != length) {
100 tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
103 assert(where + size == length, "assert_constant_size oob");
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/
H A DHttpsURLConnectionLocalCertificateChain.java121 synchronized void dumpCerts(String where, Certificate [] certs) argument
125 System.out.println(where + ":");
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlDocWriter.java83 * @param where Position of the link in the file. Character '#' is not
88 public void printHyperLink(String link, String where, argument
90 print(getHyperLinkString(link, where, label, strong, "", "", ""));
97 * @param where Position of the link in the file. Character '#' is not
101 public void printHyperLink(String link, String where, String label) { argument
102 printHyperLink(link, where, label, false);
109 * @param where Position of the link in the file. Character '#' is not
115 public void printHyperLink(String link, String where, argument
118 print(getHyperLinkString(link, where, label, strong, stylename, "", ""));
125 * @param where Positio
131 getHyperLinkString(String link, String where, String label, boolean strong) argument
147 getHyperLinkString(String link, String where, String label, boolean strong, String stylename) argument
162 getHyperLink(String link, String where, Content label) argument
180 getHyperLinkString(String link, String where, String label, boolean strong, String stylename, String title, String target) argument
228 getHyperLink(String link, String where, Content label, String title, String target) 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/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...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStringContent.java90 * @param where the starting position >= 0 && < length()
96 public UndoableEdit insertString(int where, String str) throws BadLocationException { argument
97 if (where >= count || where < 0) {
101 replace(where, 0, chars, 0, chars.length);
103 updateMarksForInsert(where, str.length());
105 return new InsertUndo(where, str.length());
109 * Removes part of the content. where + nitems must be < length().
111 * @param where the starting position >= 0
117 public UndoableEdit remove(int where, in argument
140 getString(int where, int len) argument
156 getChars(int where, int len, Segment chars) 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;
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DAssembler.java75 public void add(long where, int opc) { argument
76 add(new Instruction(where, opc, null));
78 public void add(long where, int opc, Object obj) { argument
79 add(new Instruction(where, opc, obj));
82 public void add(long where, int opc, Object obj, boolean flagCondInverted) { argument
83 add(new Instruction(where, opc, obj, flagCondInverted));
86 public void add(boolean flagNoCovered, long where, int opc, Object obj) { argument
87 add(new Instruction(flagNoCovered, where, opc, obj));
90 public void add(long where, int opc, boolean flagNoCovered) { argument
91 add(new Instruction(where, op
[all...]

Completed in 58 milliseconds

1234567