Home
last modified time | relevance | path

Searched refs:getConstPool (Results 1 – 25 of 55) sorted by relevance

123

/external/javassist/src/main/javassist/bytecode/
DEnclosingMethodAttribute.java95 return getConstPool().getClassInfo(classIndex()); in className()
102 ConstPool cp = getConstPool(); in methodName()
112 ConstPool cp = getConstPool(); in methodDescriptor()
DLocalVariableAttribute.java96 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()
DConstantAttribute.java68 int index = getConstPool().copy(getConstantValue(), newCp, in copy()
DSourceFileAttribute.java56 return getConstPool().getUtf8Info(ByteArray.readU16bit(get(), 0)); in getFileName()
DCodeAnalyzer.java27 constPool = ca.getConstPool(); in CodeAnalyzer()
41 constPool = codeAttr.getConstPool(); in computeMaxStack()
/external/javassist/src/main/javassist/expr/
DMethodCall.java85 ConstPool cp = getConstPool(); in getClassName()
105 ConstPool cp = getConstPool(); in getMethodName()
128 ConstPool cp = getConstPool(); in getSignature()
180 ConstPool constPool = getConstPool(); in replace()
DFieldAccess.java97 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()
DNewExpr.java104 ConstPool constPool = getConstPool(); in getSignature()
113 ConstPool cp = getConstPool(); in getConstructor()
176 ConstPool constPool = getConstPool(); in replace()
DHandler.java79 ConstPool cp = getConstPool(); in getType()
111 ConstPool cp = getConstPool(); in insertBefore()
DNewArray.java87 String desc = getConstPool().getClassInfo(index); in getComponentType()
128 String desc = getConstPool().getClassInfo(index); in getDimension()
174 ConstPool constPool = getConstPool(); in replace2()
DInstanceof.java67 ConstPool cp = getConstPool(); in getType()
94 ConstPool constPool = getConstPool(); in replace()
DCast.java64 ConstPool cp = getConstPool(); in getType()
91 ConstPool constPool = getConstPool(); in replace()
DExpr.java72 protected final ConstPool getConstPool() { in getConstPool() method in Expr
73 return thisMethod.getConstPool(); in getConstPool()
133 ConstPool cp = thisMethod.getConstPool(); in mayThrow()
DExprEditor.java202 minfo.getConstPool().getClassInfo(index)); in loopBody()
207 && minfo.getConstPool().isConstructor(newList.type, in loopBody()
/external/javassist/src/main/javassist/
DCtConstructor.java57 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()
DCtMethod.java55 ConstPool cp = declaring.getClassFile2().getConstPool(); in CtMethod()
144 if (declaring.getClassFile2().getConstPool() != minfo.getConstPool()) in make()
DCtNewWrappedMethod.java58 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()
DCtBehavior.java46 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()
DCtNewMethod.java227 ConstPool cp = finfo.getConstPool(); in getter()
268 ConstPool cp = finfo.getConstPool(); in setter()
333 ConstPool cp = declaring.getClassFile2().getConstPool(); in delegator0()
DCtNewWrappedConstructor.java58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); in makeBody()
DCtClassType.java786 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()
DCtNewConstructor.java140 ConstPool cp = declaring.getClassFile2().getConstPool(); in defaultConstructor()
/external/javassist/src/main/javassist/compiler/
DAccessorMaker.java50 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/
DAnalyzerTest.java202 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/
DDump.java52 w.getConstPool().print(out); in main()

123