Lines Matching defs:cp
34 private int getNameAndType(ConstPool cp) {
40 return cp.getInterfaceMethodrefNameAndType(index);
42 return cp.getMethodrefNameAndType(index);
85 ConstPool cp = getConstPool();
91 cname = cp.getInterfaceMethodrefClassName(index);
93 cname = cp.getMethodrefClassName(index);
105 ConstPool cp = getConstPool();
106 int nt = getNameAndType(cp);
107 return cp.getUtf8Info(cp.getNameAndTypeName(nt));
128 ConstPool cp = getConstPool();
129 int nt = getNameAndType(cp);
130 return cp.getUtf8Info(cp.getNameAndTypeDescriptor(nt));
204 ClassPool cp = thisClass.getClassPool();
207 CtClass[] params = Descriptor.getParameterTypes(signature, cp);
208 CtClass retType = Descriptor.getReturnType(signature, cp);