Lines Matching refs:getWhere

188      * @see #getWhere
254 env.error(f.getWhere(), "inconsistent.modifier", f);
267 env.error(f.getWhere(), "static.inner.method", f, this);
271 env.error(f.getWhere(), "static.inner.field", f.getName(), this);
287 env.error(f.getWhere(), "intf.constructor");
292 env.error(f.getWhere(), "constr.modifier", f);
298 env.error(f.getWhere(), "intf.initializer");
305 env.error(f.getWhere(), "void.array");
311 env.error(f.getWhere(), "intf.modifier.method", f);
316 env.error(f.getWhere(), "transient.meth", f);
320 env.error(f.getWhere(), "volatile.meth", f);
325 env.error(f.getWhere(), "abstract.private.modifier", f);
329 env.error(f.getWhere(), "abstract.static.modifier", f);
333 env.error(f.getWhere(), "abstract.final.modifier", f);
337 env.error(f.getWhere(), "abstract.native.modifier", f);
341 env.error(f.getWhere(),"abstract.synchronized.modifier",f);
347 env.error(f.getWhere(), "invalid.meth.body", f);
353 env.error(f.getWhere(), "no.constructor.body", f);
355 env.error(f.getWhere(), "no.meth.body", f);
367 long where = f.getWhere();
369 where = ((MemberDefinition)arg).getWhere();
382 env.error(f.getWhere(), "inner.modifier", f);
389 env.error(f.getWhere(), "intf.modifier.field", f);
400 env.error(f.getWhere(), "void.inst.var", f.getName());
406 env.error(f.getWhere(), "var.modifier", f);
410 env.error(f.getWhere(), "var.floatmodifier", f);
414 env.error(f.getWhere(), "transient.modifier", f);
418 env.error(f.getWhere(), "volatile.modifier", f);
422 env.error(f.getWhere(), "initializer.needed", f);
428 env.error(f.getWhere(), "intf.modifier.field", f);
438 env.error(f.getWhere(), "var.multidef", f, f2);
446 env.error(f.getWhere(), "inner.class.multidef", f);
568 long where = getWhere();
569 where = IdentifierToken.getWhere(superClassId, where);
574 long where = getWhere();
579 where = IdentifierToken.getWhere(interfaceIds[i], where);
623 checkSourceFile(env, getWhere());
697 env.error(getWhere(), "final.intf", nm);
709 long where = getWhere();
710 where = IdentifierToken.getWhere(superClassId, where);
813 long where = getWhere();
816 where = IdentifierToken.getWhere(interfaceIds[i], where);
997 env.error(f.getWhere(), "class.not.found", ee.name, this);
1021 env.error(f.getWhere(), "class.not.found", ee.name, this);
1061 env.error(ff.getWhere(),
1115 Node code = new CompoundStatement(getWhere(), new Statement[0]);
1137 env.makeMemberDefinition(env, getWhere(), this, null,
1279 env.error(f.getWhere(), "meth.multidef", f);
1283 env.error(f.getWhere(), "meth.redef.rettype", f, f2);
1315 long where = interfaceIds[j].getWhere();
1381 env.error(f.getWhere(), "class.not.found", ee.name, this);
1459 names[i] = new IdentifierToken(args[i].getWhere(),
1467 long where = getWhere();
1722 long where = field.getWhere();
1979 long w = c.getWhere();
2088 CompilerMember init = new CompilerMember(new MemberDefinition(getWhere(), this, M_STATIC, Type.tMethod(Type.tVoid), idClassInit, null, null), new Assembler());
2154 init.asm.add(getWhere(), opc_return, true);
2272 tab.put((val instanceof String) ? new StringExpression(f.field.getWhere(), (String)val) : val);
2388 data.writeShort(tab.index((val instanceof String) ? new StringExpression(f.field.getWhere(), (String)val) : val));
2455 f.asm.writeCoverageTable(env, (ClassDefinition)this, new DataOutputStream(attbuf), tab, f.field.getWhere());
2647 long startLine = getWhere() >> WHEREOFFSETBITS;