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

/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DTypePathInfoVisitor.java37 public void visitTypePathInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo); argument
38 public void visitTypePathInfo(Clazz clazz, Field field, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo); argument
39 public void visitTypePathInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo); argument
40 public void visitTypePathInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo); argument
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java1042 public void visitTypePathInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
1051 public void visitTypePathInfo(Clazz clazz, Member member, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
1053 visitTypePathInfo(clazz, typeAnnotation, typePathInfo);
1057 public void visitTypePathInfo(Clazz clazz, Field field, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
1059 visitTypePathInfo(clazz, (Member)field, typeAnnotation, typePathInfo);
1063 public void visitTypePathInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
1065 visitTypePathInfo(clazz, (Member)method, typeAnnotation, typePathInfo);
1069 public void visitTypePathInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
1071 visitTypePathInfo(clazz, method, typeAnnotation, typePathInfo);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java812 TypePathInfo typePathInfo = new TypePathInfo();
813 visitTypePathInfo(clazz, typeAnnotation, typePathInfo);
814 typeAnnotation.typePath[index] = typePathInfo;
896 public void visitTypePathInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
898 typePathInfo.u1typePathKind = dataInput.readUnsignedByte();
899 typePathInfo.u1typeArgumentIndex = dataInput.readUnsignedByte();
H A DProgramClassWriter.java703 public void visitTypePathInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
705 dataOutput.writeByte(typePathInfo.u1typePathKind);
706 dataOutput.writeByte(typePathInfo.u1typeArgumentIndex);
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java1061 public void visitTypePathInfo(Clazz clazz, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo) argument
1064 typePathInfo.u1typePathKind + ", argument index = " +
1065 typePathInfo.u1typeArgumentIndex);

Completed in 155 milliseconds