Lines Matching defs:id

127         packageDeclaration(off, nm.id);
145 importClass(off, nm.id);
163 importPackage(off, nm.id);
184 Identifier supId = (sup == null) ? null : sup.id;
189 implIds[i] = impl[i].id;
192 beginClass(off, doc, mod, nm.id, supId, implIds);
247 argIds[i] = args[i].id;
253 expIds[i] = exp[i].id;
256 defineField(where, doc, mod, t, nm.id, argIds, expIds, val);
358 protected Expression parseMethodExpression(Expression e, Identifier id) throws SyntaxError, IOException {
369 return new MethodExpression(p, e, id, exprArgs(i));
717 Identifier id = scanner.idValue;
720 e = parseMethodExpression(e, id);
722 e = new FieldExpression(p, e, id);
1188 IdentifierToken id = scanner.getIdToken();
1190 id.modifiers = mod;
1197 addArgument(new CatchStatement(pp, t, id, parseBlockStatement()));
1345 // label: id: stat
1398 StringBuffer buf = new StringBuffer(res.id.toString());
1415 res.id = Identifier.lookup(buf.toString());
1424 return parseName(star).id;
1436 t = Type.tClass(parseName(false).id);
1610 IdentifierToken id = null;
1617 id = scanner.getIdToken();
1623 id = new IdentifierToken(idInit);
1710 actions.defineField(p, curClass, doc, mod, t, id,
1719 actions.defineField(p, curClass, doc, mod, t, id,
1749 actions.defineField(p, curClass, doc, mod, vt, id,
1760 id = scanner.getIdToken();
2027 IdentifierToken id = parseName(false);
2029 actions.packageDeclaration(p, id);
2038 IdentifierToken id = parseName(true);
2040 if (id.id.getName().equals(idStar)) {
2041 id.id = id.id.getQualifier();
2042 actions.importPackage(p, id);
2044 actions.importClass(p, id);