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,
727 // desc is the method's descriptor (see Type).
728 considerDesc(desc);
732 if (ReplaceMethodCallsAdapter.isReplacementNeeded(owner, name, desc, mOwnerClass)) {
739 public void visitMultiANewArrayInsn(String desc, int dims) {
741 // desc an array type descriptor.
742 considerDesc(desc);
746 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc,
748 // desc is the class descriptor of the annotation class.
749 considerDesc(desc);
896 public AnnotationVisitor visitAnnotation(String name, String desc) {
897 // desc is the class descriptor of the nested annotation class.
898 considerDesc(desc);
908 public void visitEnum(String name, String desc, String value) {
909 // desc is the class descriptor of the enumeration class.
910 considerDesc(desc);