Lines Matching refs:desc

503         public void considerDesc(String desc) {
504 if (desc != null) {
506 Type t = Type.getType(desc);
540 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
541 // desc is the class descriptor of the annotation class.
542 considerDesc(desc);
564 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
565 // desc is the class descriptor of the annotation class.
566 considerDesc(desc);
583 public FieldVisitor visitField(int access, String name, String desc,
585 // desc is the field's descriptor (see Type).
586 considerDesc(desc);
602 public MethodVisitor visitMethod(int access, String name, String desc,
604 // desc is the method's descriptor (see Type).
605 considerDesc(desc);
614 public void visitOuterClass(String owner, String name, String desc) {
650 public void visitFieldInsn(int opcode, String owner, String name, String desc) {
653 // desc is the field's descriptor (see Type).
654 considerDesc(desc);
701 public void visitLocalVariable(String name, String desc,
703 // desc is the type descriptor of this local variable.
704 considerDesc(desc);
722 public void visitMethodInsn(int opcode, String owner, String name, String desc) {
726 // desc is the method's descriptor (see Type).
727 considerDesc(desc);
731 if (ReplaceMethodCallsAdapter.isReplacementNeeded(owner, name, desc, mOwnerClass)) {
738 public void visitMultiANewArrayInsn(String desc, int dims) {
740 // desc an array type descriptor.
741 considerDesc(desc);
745 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc,
747 // desc is the class descriptor of the annotation class.
748 considerDesc(desc);
895 public AnnotationVisitor visitAnnotation(String name, String desc) {
896 // desc is the class descriptor of the nested annotation class.
897 considerDesc(desc);
907 public void visitEnum(String name, String desc, String value) {
908 // desc is the class descriptor of the enumeration class.
909 considerDesc(desc);