Searched refs:typedesc (Results 1 – 7 of 7) sorted by relevance
/external/javassist/src/main/javassist/convert/ |
D | TransformNew.java | 81 int typedesc = cp.isConstructor(classname, index); in transform() local 82 if (typedesc != 0 && nested > 0) { in transform() 83 int methodref = computeMethodref(typedesc, cp); in transform() 93 private int computeMethodref(int typedesc, ConstPool cp) { in computeMethodref() argument 96 typedesc = cp.addUtf8Info( in computeMethodref() 98 cp.getUtf8Info(typedesc))); in computeMethodref() 100 cp.addNameAndTypeInfo(mnameIndex, typedesc)); in computeMethodref()
|
D | TransformWriteField.java | 35 String typedesc = isField(tclazz.getClassPool(), cp, in transform() local 37 if (typedesc != null) { in transform() 41 char c0 = typedesc.charAt(0); in transform() 62 String type = "(Ljava/lang/Object;" + typedesc + ")V"; in transform()
|
D | TransformFieldAccess.java | 63 String typedesc in transform() local 66 if (typedesc != null) { in transform() 69 typedesc); in transform()
|
D | TransformReadField.java | 74 String typedesc = isField(tclazz.getClassPool(), cp, in transform() local 76 if (typedesc != null) { in transform() 84 String type = "(Ljava/lang/Object;)" + typedesc; in transform()
|
D | TransformNewClass.java | 67 int typedesc = cp.isConstructor(classname, index); in transform() local 68 if (typedesc != 0 && nested > 0) { in transform()
|
D | TransformCall.java | 108 int typedesc, ConstPool cp) throws BadBytecode in match() argument 112 typedesc); in match()
|
D | TransformBefore.java | 52 int typedesc, ConstPool cp) throws BadBytecode in match() argument
|