Lines Matching refs:desc

367         public boolean considerDesc(String desc) {
368 if (desc != null) {
370 if (desc.length() > 0 && desc.charAt(0) == '(') {
372 Type t = Type.getReturnType(desc);
375 for (Type arg : Type.getArgumentTypes(desc)) {
380 Type t = Type.getType(desc);
418 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
419 // desc is the class descriptor of the annotation class.
420 considerDesc(desc);
442 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
443 // desc is the class descriptor of the annotation class.
444 considerDesc(desc);
461 public FieldVisitor visitField(int access, String name, String desc,
463 // desc is the field's descriptor (see Type).
464 considerDesc(desc);
484 public MethodVisitor visitMethod(int access, String name, String desc,
486 // desc is the method's descriptor (see Type).
487 considerDesc(desc);
496 public void visitOuterClass(String owner, String name, String desc) {
529 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) {
606 // desc is the method's descriptor (see Type).
607 considerDesc(desc);
612 public void visitMultiANewArrayInsn(String desc, int dims) {
614 // desc an array type descriptor.
615 considerDesc(desc);
619 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc,
621 // desc is the class descriptor of the annotation class.
622 considerDesc(desc);
769 public AnnotationVisitor visitAnnotation(String name, String desc) {
770 // desc is the class descriptor of the nested annotation class.
771 considerDesc(desc);
781 public void visitEnum(String name, String desc, String value) {
782 // desc is the class descriptor of the enumeration class.
783 considerDesc(desc);