HomeSort by relevance Sort by last modified time
    Searched refs:ConstPool (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 31 DeprecatedAttribute(ConstPool cp, int n, DataInputStream in)
42 public DeprecatedAttribute(ConstPool cp) {
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
SyntheticAttribute.java 31 SyntheticAttribute(ConstPool cp, int n, DataInputStream in)
42 public SyntheticAttribute(ConstPool cp) {
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
LocalVariableTypeAttribute.java 36 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) {
ConstantAttribute.java 31 ConstantAttribute(ConstPool cp, int n, DataInputStream in)
44 public ConstantAttribute(ConstPool cp, int index) {
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
SourceFileAttribute.java 31 SourceFileAttribute(ConstPool cp, int n, DataInputStream in)
43 public SourceFileAttribute(ConstPool cp, String filename) {
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
EnclosingMethodAttribute.java 31 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) {
AnnotationDefaultAttribute.java 79 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) {
108 = new AnnotationsAttribute.Copier(info, constPool, newCp, classnames);
124 return new AnnotationsAttribute.Parser(info, constPool)
136 * @see javassist.bytecode.annotation.Annotation#createMemberValue(ConstPool, CtClass)
140 AnnotationsWriter writer = new AnnotationsWriter(output, constPool);
ExceptionsAttribute.java 31 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;
128 elist[k++] = constPool.getClassInfo(index);
155 ByteArray.write16bit(constPool.addClassInfo(elist[i])
    [all...]
InstructionPrinter.java 41 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.CONST_Float
    [all...]
FieldInfo.java 30 ConstPool constPool;
38 private FieldInfo(ConstPool cp) {
39 constPool = cp;
53 public FieldInfo(ConstPool cp, String fieldName, String desc) {
60 FieldInfo(ConstPool cp, DataInputStream in) throws IOException {
80 void compact(ConstPool cp) {
84 constPool = cp;
87 void prune(ConstPool cp) {
112 index = constPool.copy(index, cp, null)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
BooleanMemberValue.java 18 import javassist.bytecode.ConstPool;
37 public BooleanMemberValue(int index, ConstPool cp) {
47 public BooleanMemberValue(boolean b, ConstPool cp) {
55 public BooleanMemberValue(ConstPool cp) {
ByteMemberValue.java 18 import javassist.bytecode.ConstPool;
37 public ByteMemberValue(int index, ConstPool cp) {
47 public ByteMemberValue(byte b, ConstPool cp) {
55 public ByteMemberValue(ConstPool cp) {
CharMemberValue.java 19 import javassist.bytecode.ConstPool;
38 public CharMemberValue(int index, ConstPool cp) {
48 public CharMemberValue(char c, ConstPool cp) {
56 public CharMemberValue(ConstPool cp) {
DoubleMemberValue.java 19 import javassist.bytecode.ConstPool;
39 public DoubleMemberValue(int index, ConstPool cp) {
49 public DoubleMemberValue(double d, ConstPool cp) {
57 public DoubleMemberValue(ConstPool cp) {
FloatMemberValue.java 19 import javassist.bytecode.ConstPool;
39 public FloatMemberValue(int index, ConstPool cp) {
49 public FloatMemberValue(float f, ConstPool cp) {
57 public FloatMemberValue(ConstPool cp) {
IntegerMemberValue.java 19 import javassist.bytecode.ConstPool;
38 public IntegerMemberValue(int index, ConstPool cp) {
54 public IntegerMemberValue(ConstPool cp, int value) {
62 public IntegerMemberValue(ConstPool cp) {
LongMemberValue.java 19 import javassist.bytecode.ConstPool;
38 public LongMemberValue(int index, ConstPool cp) {
48 public LongMemberValue(long j, ConstPool cp) {
56 public LongMemberValue(ConstPool cp) {
ShortMemberValue.java 19 import javassist.bytecode.ConstPool;
38 public ShortMemberValue(int index, ConstPool cp) {
48 public ShortMemberValue(short s, ConstPool cp) {
56 public ShortMemberValue(ConstPool cp) {
StringMemberValue.java 19 import javassist.bytecode.ConstPool;
38 public StringMemberValue(int index, ConstPool cp) {
48 public StringMemberValue(String str, ConstPool cp) {
56 public StringMemberValue(ConstPool cp) {
ClassMemberValue.java 19 import javassist.bytecode.ConstPool;
39 public ClassMemberValue(int index, ConstPool cp) {
49 public ClassMemberValue(String className, ConstPool cp) {
58 public ClassMemberValue(ConstPool cp) {
AnnotationMemberValue.java 18 import javassist.bytecode.ConstPool;
34 public AnnotationMemberValue(ConstPool cp) {
42 public AnnotationMemberValue(Annotation a, ConstPool cp) {
EnumMemberValue.java 22 import javassist.bytecode.ConstPool;
43 public EnumMemberValue(int type, int value, ConstPool cp) {
53 public EnumMemberValue(ConstPool cp) {
MemberValue.java 19 import javassist.bytecode.ConstPool;
34 ConstPool cp;
37 MemberValue(char tag, ConstPool cp) {
  /external/javassist/src/main/javassist/convert/
Transformer.java 23 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;
TransformFieldAccess.java 31 private ConstPool constPool;
42 this.constPool = null;
45 public void initialize(ConstPool cp, CodeAttribute attr) {
46 if (constPool != cp)
57 CodeIterator iterator, ConstPool cp)
72 constPool = cp;

Completed in 243 milliseconds

1 2 3 4