/external/javassist/src/main/javassist/bytecode/ |
Bytecode.java | 98 * <ul><pre>ConstPool cp = ...; // constant pool table 110 * @see ConstPool 118 public static final CtClass THIS = ConstPool.THIS; 120 ConstPool constPool; 138 public Bytecode(ConstPool cp, int stacksize, int localvars) { 139 constPool = cp; 155 public Bytecode(ConstPool cp) { 178 public ConstPool getConstPool() { return constPool; } [all...] |
AttributeInfo.java | 34 protected ConstPool constPool; 38 protected AttributeInfo(ConstPool cp, int attrname, byte[] attrinfo) { 39 constPool = cp; 44 protected AttributeInfo(ConstPool cp, String attrname) { 56 public AttributeInfo(ConstPool cp, String attrname, byte[] attrinfo) { 60 protected AttributeInfo(ConstPool cp, int n, DataInputStream in) 63 constPool = cp; 71 static AttributeInfo read(ConstPool cp, DataInputStream in) 128 return constPool.getUtf8Info(name) [all...] |
CodeAnalyzer.java | 22 private ConstPool constPool; 27 constPool = ca.getConstPool(); 41 constPool = codeAttr.getConstPool(); 230 desc = constPool.getMethodrefType(ci.u16bitAt(index + 1)); 234 desc = constPool.getMethodrefType(ci.u16bitAt(index + 1)); 238 desc = constPool.getInterfaceMethodrefType( 259 String desc = constPool.getFieldrefType(ci.u16bitAt(index + 1));
|
ExceptionTable.java | 42 private ConstPool constPool; 50 public ExceptionTable(ConstPool cp) { 51 constPool = cp; 55 ExceptionTable(ConstPool cp, DataInputStream in) throws IOException { 56 constPool = cp; 238 public ExceptionTable copy(ConstPool newCp, Map classnames) { 240 ConstPool srcCp = 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...] |
ClassFileWriter.java | 77 private ConstPoolWriter constPool; 93 constPool = new ConstPoolWriter(output); 94 fields = new FieldWriter(constPool); 95 methods = new MethodWriter(constPool); 102 public ConstPoolWriter getConstPool() { return constPool; } 129 constPool.end(); 175 constPool.end(); 255 protected ConstPoolWriter constPool; 260 constPool = cp; 274 int nameIndex = constPool.addUtf8Info(name) [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...] |
ClassFile.java | 35 ConstPool constPool; 124 constPool = new ConstPool(classname); 125 thisClass = constPool.getThisClassInfo(); 138 attributes.add(new SourceFileAttribute(constPool, 144 this.superClass = constPool.addClassInfo(superclass); 148 this.superClass = constPool.addClassInfo("java.lang.Object"); 167 ConstPool cp = compact0(); 183 constPool = cp [all...] |
MethodInfo.java | 34 ConstPool constPool; 59 private MethodInfo(ConstPool cp) { 60 constPool = cp; 76 public MethodInfo(ConstPool cp, String methodname, String desc) { 81 descriptor = constPool.addUtf8Info(desc); 84 MethodInfo(ConstPool cp, DataInputStream in) throws IOException { 108 public MethodInfo(ConstPool cp, String methodname, MethodInfo src, 129 void compact(ConstPool cp) { 133 constPool = cp [all...] |
/external/javassist/src/main/javassist/convert/ |
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;
|
TransformCall.java | 32 protected ConstPool constPool; 49 constPool = null; 53 public void initialize(ConstPool cp, CodeAttribute attr) { 54 if (constPool != cp) 66 ConstPool cp) throws BadBytecode 108 int typedesc, ConstPool cp) throws BadBytecode 123 constPool = cp;
|
/external/javassist/src/main/javassist/expr/ |
FieldAccess.java | 151 ConstPool constPool = getConstPool(); 161 = Descriptor.toCtClass(constPool.getFieldrefType(index), 175 jc.recordParams(constPool.getFieldrefClassName(index), params,
|
Cast.java | 64 ConstPool cp = getConstPool(); 91 ConstPool constPool = getConstPool();
|
Instanceof.java | 67 ConstPool cp = getConstPool(); 94 ConstPool constPool = getConstPool();
|
MethodCall.java | 34 private int getNameAndType(ConstPool cp) { 85 ConstPool cp = getConstPool(); 105 ConstPool cp = getConstPool(); 128 ConstPool cp = getConstPool(); 180 ConstPool constPool = getConstPool(); 189 classname = constPool.getInterfaceMethodrefClassName(index); 190 methodname = constPool.getInterfaceMethodrefName(index); 191 signature = constPool.getInterfaceMethodrefType(index); 196 classname = constPool.getMethodrefClassName(index) [all...] |
NewArray.java | 174 ConstPool constPool = getConstPool(); 189 desc = constPool.getClassInfo(index); 199 desc = constPool.getClassInfo(index);
|
NewExpr.java | 43 private int getNameAndType(ConstPool cp) { 104 ConstPool constPool = getConstPool(); 106 return constPool.getMethodrefType(methodIndex); 113 ConstPool cp = getConstPool(); 133 ConstPool cp = getConstPool(); 176 ConstPool constPool = getConstPool(); 180 String signature = constPool.getMethodrefType(methodIndex);
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Analyzer.java | 27 import javassist.bytecode.ConstPool; 213 ConstPool constPool = method.getConstPool(); 222 type = index == 0 ? Type.THROWABLE : Type.get(classes.get(constPool.getClassInfo(index)));
|
Executor.java | 22 import javassist.bytecode.ConstPool; 33 private final ConstPool constPool; 40 public Executor(ClassPool classPool, ConstPool constPool) { 41 this.constPool = constPool; 578 frame.push(resolveClassInfo(constPool.getClassInfo(iter.u16bitAt(pos + 1)))); 598 frame.push(typeFromDesc(constPool.getClassInfo(iter.u16bitAt(pos + 1)))); 704 String desc = constPool.getFieldrefType(index) [all...] |
/external/robolectric/lib/main/ |
javassist-3.14.0-GA.jar | |