Lines Matching refs:desc

443         public void considerDesc(String desc) {
444 if (desc != null) {
446 Type t = Type.getType(desc);
481 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
482 // desc is the class descriptor of the annotation class.
483 considerDesc(desc);
505 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
506 // desc is the class descriptor of the annotation class.
507 considerDesc(desc);
524 public FieldVisitor visitField(int access, String name, String desc,
526 // desc is the field's descriptor (see Type).
527 considerDesc(desc);
543 public MethodVisitor visitMethod(int access, String name, String desc,
545 // desc is the method's descriptor (see Type).
546 considerDesc(desc);
555 public void visitOuterClass(String owner, String name, String desc) {
588 public void visitFieldInsn(int opcode, String owner, String name, String desc) {
591 // desc is the field's descriptor (see Type).
592 considerDesc(desc);
639 public void visitLocalVariable(String name, String desc,
641 // desc is the type descriptor of this local variable.
642 considerDesc(desc);
660 public void visitMethodInsn(int opcode, String owner, String name, String desc) {
664 // desc is the method's descriptor (see Type).
665 considerDesc(desc);
670 public void visitMultiANewArrayInsn(String desc, int dims) {
672 // desc an array type descriptor.
673 considerDesc(desc);
677 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc,
679 // desc is the class descriptor of the annotation class.
680 considerDesc(desc);
827 public AnnotationVisitor visitAnnotation(String name, String desc) {
828 // desc is the class descriptor of the nested annotation class.
829 considerDesc(desc);
839 public void visitEnum(String name, String desc, String value) {
840 // desc is the class descriptor of the enumeration class.
841 considerDesc(desc);