Home | History | Annotate | Download | only in apicheck

Lines Matching defs:cl

126     ClassInfo cl;
166 cl = new ClassInfo(null/*classDoc*/, ""/*rawCommentText*/, tokenizer.pos(), pub, prot,
170 cl.setDeprecated(dep);
178 api.mapClassToSuper(cl, ext);
180 cl.setTypeInfo(typeInfo);
181 cl.setAnnotations(new ArrayList<AnnotationInstanceInfo>());
190 api.mapClassToInterface(cl, token);
204 parseConstructor(tokenizer, cl, token);
207 parseMethod(tokenizer, cl, token);
210 parseField(tokenizer, cl, token, false);
213 parseField(tokenizer, cl, token, true);
219 pkg.addClass(cl);
222 private static void parseConstructor(Tokenizer tokenizer, ClassInfo cl, String token)
250 //method = new MethodInfo(name, cl.qualifiedName(), false/*static*/, false/*final*/, dep,
251 // pub ? "public" : "protected", tokenizer.pos(), cl);
253 name, null/*signature*/, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, false/*isFinal*/,
257 null/*overriddenMethod*/, cl.asTypeInfo(), new ArrayList<ParameterInfo>(),
270 cl.addConstructor(method);
273 private static void parseMethod(Tokenizer tokenizer, ClassInfo cl, String token)
323 name, null/*signature*/, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, fin,
343 cl.addMethod(method);
346 private static void parseField(Tokenizer tokenizer, ClassInfo cl, String token, boolean isEnum)
411 field = new FieldInfo(name, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, fin, stat,
416 cl.addEnumConstant(field);
418 cl.addField(field);