Home
last modified time | relevance | path

Searched refs:methodInfo (Results 1 – 5 of 5) sorted by relevance

/external/javassist/src/main/javassist/
DCtBehavior.java30 protected MethodInfo methodInfo; field in CtBehavior
34 methodInfo = minfo; in CtBehavior()
44 MethodInfo srcInfo = src.methodInfo; in copy()
66 methodInfo = new MethodInfo(cp, srcInfo.getName(), srcInfo, map); in copy()
68 methodInfo.setSuperclass(destSuperName); in copy()
82 buffer.append(methodInfo.getDescriptor()); in extendToString()
99 return methodInfo; in getMethodInfo()
121 public MethodInfo getMethodInfo2() { return methodInfo; } in getMethodInfo2()
131 return AccessFlag.toModifier(methodInfo.getAccessFlags()); in getModifiers()
145 methodInfo.setAccessFlags(AccessFlag.of(mod)); in setModifiers()
[all …]
DCtMethod.java57 methodInfo = new MethodInfo(cp, mname, desc); in CtMethod()
171 cachedStringRep = methodInfo.getName() in getStringRep()
172 + Descriptor.getParamDescriptor(methodInfo.getDescriptor()); in getStringRep()
201 return methodInfo.getName(); in getName()
209 methodInfo.setName(newname); in setName()
254 setBody0(src.declaringClass, src.methodInfo, in setBody()
255 declaringClass, methodInfo, map); in setBody()
291 methodInfo.setCodeAttribute(cattr); in setWrappedBody()
292 methodInfo.setAccessFlags(methodInfo.getAccessFlags() in setWrappedBody()
DCtConstructor.java59 methodInfo = new MethodInfo(cp, "<init>", desc); in CtConstructor()
108 return methodInfo.isConstructor(); in isConstructor()
115 return methodInfo.isStaticInitializer(); in isClassInitializer()
137 if (methodInfo.isStaticInitializer()) in getName()
185 CodeAttribute codeAttr = methodInfo.getCodeAttribute(); in callsSuper()
234 setBody0(src.declaringClass, src.methodInfo, in setBody()
235 declaringClass, methodInfo, map); in setBody()
252 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertBeforeBody()
254 Bytecode b = new Bytecode(methodInfo.getConstPool(), in insertBeforeBody()
266 methodInfo.rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile2()); in insertBeforeBody()
[all …]
/external/proguard/src/proguard/retrace/
DReTrace.java451 MethodInfo methodInfo = (MethodInfo)methodInfoIterator.next(); in originalMethodName() local
452 if (methodInfo.matches(lineNumber, type, arguments)) in originalMethodName()
462 outLine.append(methodInfo.type).append(' '); in originalMethodName()
464 outLine.append(methodInfo.originalName); in originalMethodName()
467 outLine.append('(').append(methodInfo.arguments).append(')'); in originalMethodName()
483 extraBuffer.append(methodInfo.type).append(' '); in originalMethodName()
485 extraBuffer.append(methodInfo.originalName); in originalMethodName()
488 extraBuffer.append('(').append(methodInfo.arguments).append(')'); in originalMethodName()
/external/javassist/src/main/javassist/bytecode/
DInstructionPrinter.java123 return opstring + " " + methodInfo(pool, iter.u16bitAt(pos + 1)); in instructionString()
207 private static String methodInfo(ConstPool pool, int index) { in methodInfo() method in InstructionPrinter