/external/javassist/src/main/javassist/bytecode/ |
D | EnclosingMethodAttribute.java | 95 return getConstPool().getClassInfo(classIndex()); in className() 102 ConstPool cp = getConstPool(); in methodName() 112 ConstPool cp = getConstPool(); in methodDescriptor()
|
D | LocalVariableAttribute.java | 96 ConstPool cp = getConstPool(); in renameClass() 114 ConstPool cp = getConstPool(); in renameClass() 213 return getConstPool().getUtf8Info(nameIndex(i)); in variableName() 257 return getConstPool().getUtf8Info(descriptorIndex(i)); in descriptor() 296 ConstPool cp = getConstPool(); in copy()
|
D | ConstantAttribute.java | 68 int index = getConstPool().copy(getConstantValue(), newCp, in copy()
|
D | SourceFileAttribute.java | 56 return getConstPool().getUtf8Info(ByteArray.readU16bit(get(), 0)); in getFileName()
|
D | CodeAnalyzer.java | 27 constPool = ca.getConstPool(); in CodeAnalyzer() 41 constPool = codeAttr.getConstPool(); in computeMaxStack()
|
/external/javassist/src/main/javassist/expr/ |
D | MethodCall.java | 85 ConstPool cp = getConstPool(); in getClassName() 105 ConstPool cp = getConstPool(); in getMethodName() 128 ConstPool cp = getConstPool(); in getSignature() 180 ConstPool constPool = getConstPool(); in replace()
|
D | FieldAccess.java | 97 return getConstPool().getFieldrefClassName(index); in getClassName() 105 return getConstPool().getFieldrefName(index); in getFieldName() 136 return getConstPool().getFieldrefType(index); in getSignature() 151 ConstPool constPool = getConstPool(); in replace()
|
D | NewExpr.java | 104 ConstPool constPool = getConstPool(); in getSignature() 113 ConstPool cp = getConstPool(); in getConstructor() 176 ConstPool constPool = getConstPool(); in replace()
|
D | Handler.java | 79 ConstPool cp = getConstPool(); in getType() 111 ConstPool cp = getConstPool(); in insertBefore()
|
D | NewArray.java | 87 String desc = getConstPool().getClassInfo(index); in getComponentType() 128 String desc = getConstPool().getClassInfo(index); in getDimension() 174 ConstPool constPool = getConstPool(); in replace2()
|
D | Instanceof.java | 67 ConstPool cp = getConstPool(); in getType() 94 ConstPool constPool = getConstPool(); in replace()
|
D | Cast.java | 64 ConstPool cp = getConstPool(); in getType() 91 ConstPool constPool = getConstPool(); in replace()
|
D | Expr.java | 72 protected final ConstPool getConstPool() { in getConstPool() method in Expr 73 return thisMethod.getConstPool(); in getConstPool() 133 ConstPool cp = thisMethod.getConstPool(); in mayThrow()
|
D | ExprEditor.java | 202 minfo.getConstPool().getClassInfo(index)); in loopBody() 207 && minfo.getConstPool().isConstructor(newList.type, in loopBody()
|
/external/javassist/src/main/javassist/ |
D | CtConstructor.java | 57 ConstPool cp = declaring.getClassFile2().getConstPool(); in CtConstructor() 156 ConstPool cp = ca.getConstPool(); in isEmpty() 254 Bytecode b = new Bytecode(methodInfo.getConstPool(), in insertBeforeBody() 379 String desc = ca.getConstPool().getMethodrefType(mref); in removeConsCall()
|
D | CtMethod.java | 55 ConstPool cp = declaring.getClassFile2().getConstPool(); in CtMethod() 144 if (declaring.getClassFile2().getConstPool() != minfo.getConstPool()) in make()
|
D | CtNewWrappedMethod.java | 58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); in makeBody() 147 MethodInfo body = new MethodInfo(classfile.getConstPool(), in addBodyMethod() 152 body.addAttribute(new SyntheticAttribute(classfile.getConstPool())); in addBodyMethod()
|
D | CtBehavior.java | 46 ConstPool cp = declaring.getClassFile2().getConstPool(); in copy() 354 ea = new ExceptionsAttribute(methodInfo.getConstPool()); in setExceptionTypes() 427 ConstPool cp = destInfo.getConstPool(); in setBody0() 475 methodInfo.addAttribute(new AttributeInfo(methodInfo.getConstPool(), in setAttribute() 546 ConstPool cp = methodInfo.getConstPool(); in addLocalVariable() 618 classInfo = methodInfo.getConstPool().addClassInfo(type); in addParameter2() 646 ConstPool cp = methodInfo.getConstPool(); in instrument() 763 ConstPool pool = methodInfo.getConstPool(); in insertAfter() 1008 ConstPool cp = methodInfo.getConstPool(); in addCatch()
|
D | CtNewMethod.java | 227 ConstPool cp = finfo.getConstPool(); in getter() 268 ConstPool cp = finfo.getConstPool(); in setter() 333 ConstPool cp = declaring.getClassFile2().getConstPool(); in delegator0()
|
D | CtNewWrappedConstructor.java | 58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); in makeBody()
|
D | CtClassType.java | 786 ica = new InnerClassesAttribute(cf.getConstPool()); in makeNestedClass() 792 cf2.addAttribute(ica.copy(cf2.getConstPool(), null)); in makeNestedClass() 1240 ConstPool cp = getClassFile2().getConstPool(); in addField() 1288 Bytecode code = new Bytecode(cf.getConstPool(), 0, 0); in makeClassInitializer() 1358 cf.addAttribute(new AttributeInfo(cf.getConstPool(), name, data)); in setAttribute() 1366 ConstPool cp = cf.getConstPool(); in instrument() 1462 Bytecode code = new Bytecode(cf.getConstPool(), 0, 0); in modifyClassConstructor() 1490 m = new MethodInfo(cf.getConstPool(), "<clinit>", "()V"); in modifyClassConstructor() 1534 ConstPool cp = cf.getConstPool(); in modifyConstructors()
|
D | CtNewConstructor.java | 140 ConstPool cp = declaring.getClassFile2().getConstPool(); in defaultConstructor()
|
/external/javassist/src/main/javassist/compiler/ |
D | AccessorMaker.java | 50 ConstPool cp = cf.getConstPool(); in getConstructor() 109 ConstPool cp = cf.getConstPool(); in getMethodAccessor() 161 ConstPool cp = cf.getConstPool(); in getFieldGetter() 212 ConstPool cp = cf.getConstPool(); in getFieldSetter()
|
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
D | AnalyzerTest.java | 202 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); in generateDeadCode() 222 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); in generateInvalidCode() 239 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); in generateCodeFalloff() 254 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); in generateJsrMerge() 278 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); in generateJsrMerge2()
|
/external/javassist/src/main/javassist/tools/ |
D | Dump.java | 52 w.getConstPool().print(out); in main()
|