Searched refs:ConstPool (Results 1 - 25 of 89) sorted by relevance

1234

/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java31 DeprecatedAttribute(ConstPool cp, int n, DataInputStream in)
42 public DeprecatedAttribute(ConstPool cp) {
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
H A DSyntheticAttribute.java31 SyntheticAttribute(ConstPool cp, int n, DataInputStream in)
42 public SyntheticAttribute(ConstPool cp) {
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
H A DLocalVariableTypeAttribute.java36 public LocalVariableTypeAttribute(ConstPool cp) {
41 LocalVariableTypeAttribute(ConstPool cp, int n, DataInputStream in)
47 private LocalVariableTypeAttribute(ConstPool cp, byte[] dest) {
59 LocalVariableAttribute makeThisAttr(ConstPool cp, byte[] dest) {
H A DConstantAttribute.java31 ConstantAttribute(ConstPool cp, int n, DataInputStream in)
44 public ConstantAttribute(ConstPool cp, int index) {
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
H A DSourceFileAttribute.java31 SourceFileAttribute(ConstPool cp, int n, DataInputStream in)
43 public SourceFileAttribute(ConstPool cp, String filename) {
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
H A DEnclosingMethodAttribute.java31 EnclosingMethodAttribute(ConstPool cp, int n, DataInputStream in)
45 public EnclosingMethodAttribute(ConstPool cp, String className,
65 public EnclosingMethodAttribute(ConstPool cp, String className) {
102 ConstPool cp = getConstPool();
112 ConstPool cp = getConstPool();
126 public AttributeInfo copy(ConstPool newCp, Map classnames) {
H A DAnnotationDefaultAttribute.java79 public AnnotationDefaultAttribute(ConstPool cp, byte[] info) {
90 public AnnotationDefaultAttribute(ConstPool cp) {
97 AnnotationDefaultAttribute(ConstPool cp, int n, DataInputStream in)
106 public AttributeInfo copy(ConstPool newCp, Map classnames) {
136 * @see javassist.bytecode.annotation.Annotation#createMemberValue(ConstPool, CtClass)
H A DExceptionsAttribute.java31 ExceptionsAttribute(ConstPool cp, int n, DataInputStream in)
43 private ExceptionsAttribute(ConstPool cp, ExceptionsAttribute src,
54 public ExceptionsAttribute(ConstPool cp) {
69 public AttributeInfo copy(ConstPool newCp, Map classnames) {
82 ConstPool srcCp = srcAttr.constPool;
83 ConstPool destCp = this.constPool;
H A DInstructionPrinter.java41 ConstPool pool = info.getConstPool();
59 public static String instructionString(CodeIterator iter, int pos, ConstPool pool) {
195 private static String classInfo(ConstPool pool, int index) {
200 private static String interfaceMethodInfo(ConstPool pool, int index) {
207 private static String methodInfo(ConstPool pool, int index) {
215 private static String fieldInfo(ConstPool pool, int index) {
262 private static String ldc(ConstPool pool, int index) {
265 case ConstPool.CONST_String:
267 case ConstPool.CONST_Integer:
269 case ConstPool
[all...]
H A DFieldInfo.java30 ConstPool constPool;
38 private FieldInfo(ConstPool cp) {
53 public FieldInfo(ConstPool cp, String fieldName, String desc) {
60 FieldInfo(ConstPool cp, DataInputStream in) throws IOException {
80 void compact(ConstPool cp) {
87 void prune(ConstPool cp) {
126 public ConstPool getConstPool() {
/external/javassist/src/main/javassist/bytecode/annotation/
H A DBooleanMemberValue.java18 import javassist.bytecode.ConstPool;
37 public BooleanMemberValue(int index, ConstPool cp) {
47 public BooleanMemberValue(boolean b, ConstPool cp) {
55 public BooleanMemberValue(ConstPool cp) {
H A DByteMemberValue.java18 import javassist.bytecode.ConstPool;
37 public ByteMemberValue(int index, ConstPool cp) {
47 public ByteMemberValue(byte b, ConstPool cp) {
55 public ByteMemberValue(ConstPool cp) {
H A DCharMemberValue.java19 import javassist.bytecode.ConstPool;
38 public CharMemberValue(int index, ConstPool cp) {
48 public CharMemberValue(char c, ConstPool cp) {
56 public CharMemberValue(ConstPool cp) {
H A DDoubleMemberValue.java19 import javassist.bytecode.ConstPool;
39 public DoubleMemberValue(int index, ConstPool cp) {
49 public DoubleMemberValue(double d, ConstPool cp) {
57 public DoubleMemberValue(ConstPool cp) {
H A DFloatMemberValue.java19 import javassist.bytecode.ConstPool;
39 public FloatMemberValue(int index, ConstPool cp) {
49 public FloatMemberValue(float f, ConstPool cp) {
57 public FloatMemberValue(ConstPool cp) {
H A DIntegerMemberValue.java19 import javassist.bytecode.ConstPool;
38 public IntegerMemberValue(int index, ConstPool cp) {
54 public IntegerMemberValue(ConstPool cp, int value) {
62 public IntegerMemberValue(ConstPool cp) {
H A DLongMemberValue.java19 import javassist.bytecode.ConstPool;
38 public LongMemberValue(int index, ConstPool cp) {
48 public LongMemberValue(long j, ConstPool cp) {
56 public LongMemberValue(ConstPool cp) {
H A DShortMemberValue.java19 import javassist.bytecode.ConstPool;
38 public ShortMemberValue(int index, ConstPool cp) {
48 public ShortMemberValue(short s, ConstPool cp) {
56 public ShortMemberValue(ConstPool cp) {
H A DStringMemberValue.java19 import javassist.bytecode.ConstPool;
38 public StringMemberValue(int index, ConstPool cp) {
48 public StringMemberValue(String str, ConstPool cp) {
56 public StringMemberValue(ConstPool cp) {
H A DClassMemberValue.java19 import javassist.bytecode.ConstPool;
39 public ClassMemberValue(int index, ConstPool cp) {
49 public ClassMemberValue(String className, ConstPool cp) {
58 public ClassMemberValue(ConstPool cp) {
H A DAnnotationMemberValue.java18 import javassist.bytecode.ConstPool;
34 public AnnotationMemberValue(ConstPool cp) {
42 public AnnotationMemberValue(Annotation a, ConstPool cp) {
H A DEnumMemberValue.java22 import javassist.bytecode.ConstPool;
43 public EnumMemberValue(int type, int value, ConstPool cp) {
53 public EnumMemberValue(ConstPool cp) {
H A DMemberValue.java19 import javassist.bytecode.ConstPool;
34 ConstPool cp;
37 MemberValue(char tag, ConstPool cp) {
/external/javassist/src/main/javassist/convert/
H A DTransformer.java23 import javassist.bytecode.ConstPool;
42 public void initialize(ConstPool cp, CodeAttribute attr) {}
44 public void initialize(ConstPool cp, CtClass clazz, MethodInfo minfo) throws CannotCompileException {
51 ConstPool cp) throws CannotCompileException, BadBytecode;
H A DTransformFieldAccess.java31 private ConstPool constPool;
45 public void initialize(ConstPool cp, CodeAttribute attr) {
57 CodeIterator iterator, ConstPool cp)

Completed in 282 milliseconds

1234