Lines Matching refs:desc

366         public boolean considerDesc(String desc) {
367 if (desc != null) {
369 if (desc.length() > 0 && desc.charAt(0) == '(') {
371 Type t = Type.getReturnType(desc);
374 for (Type arg : Type.getArgumentTypes(desc)) {
379 Type t = Type.getType(desc);
417 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
418 // desc is the class descriptor of the annotation class.
419 considerDesc(desc);
441 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
442 // desc is the class descriptor of the annotation class.
443 considerDesc(desc);
460 public FieldVisitor visitField(int access, String name, String desc,
462 // desc is the field's descriptor (see Type).
463 considerDesc(desc);
483 public MethodVisitor visitMethod(int access, String name, String desc,
485 // desc is the method's descriptor (see Type).
486 considerDesc(desc);
495 public void visitOuterClass(String owner, String name, String desc) {
528 public void visitFieldInsn(int opcode, String owner, String name, String desc) {
531 // desc is the field's descriptor (see Type).
532 considerDesc(desc);
579 public void visitLocalVariable(String name, String desc,
581 // desc is the type descriptor of this local variable.
582 considerDesc(desc);
600 public void visitMethodInsn(int opcode, String owner, String name, String desc,
607 // desc is the method's descriptor (see Type).
608 considerDesc(desc);
613 public void visitMultiANewArrayInsn(String desc, int dims) {
615 // desc an array type descriptor.
616 considerDesc(desc);
620 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc,
622 // desc is the class descriptor of the annotation class.
623 considerDesc(desc);
770 public AnnotationVisitor visitAnnotation(String name, String desc) {
771 // desc is the class descriptor of the nested annotation class.
772 considerDesc(desc);
782 public void visitEnum(String name, String desc, String value) {
783 // desc is the class descriptor of the enumeration class.
784 considerDesc(desc);