Searched refs:superTypeTargetInfo (Results 1 - 5 of 5) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/annotation/target/visitor/
H A DTargetInfoVisitor.java38 public void visitSuperTypeTargetInfo( Clazz clazz, TypeAnnotation typeAnnotation, SuperTypeTargetInfo superTypeTargetInfo); argument
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java990 public void visitSuperTypeTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, SuperTypeTargetInfo superTypeTargetInfo) argument
992 println("Target (type = 0x" + Integer.toHexString(superTypeTargetInfo.u1targetType) + "): " +
993 (superTypeTargetInfo.u2superTypeIndex == 0xffff ?
995 "interface #" + superTypeTargetInfo.u2superTypeIndex));
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java643 public void visitSuperTypeTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, SuperTypeTargetInfo superTypeTargetInfo) argument
645 dataOutput.writeShort(superTypeTargetInfo.u2superTypeIndex);
H A DProgramClassReader.java830 public void visitSuperTypeTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, SuperTypeTargetInfo superTypeTargetInfo) argument
832 superTypeTargetInfo.u2superTypeIndex = dataInput.readUnsignedShort();
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java950 public void visitSuperTypeTargetInfo(Clazz clazz, TypeAnnotation typeAnnotation, SuperTypeTargetInfo superTypeTargetInfo) argument
952 visitAnyTargetInfo(clazz, typeAnnotation, superTypeTargetInfo);

Completed in 66 milliseconds