Lines Matching refs:descriptor
100 //String descriptor = programField.getDescriptor(programClass);
103 // TODO: Handle field with the same name and descriptor in the target class.
107 //ProgramField targetField = (ProgramField)targetClass.findField(name, descriptor);
187 String descriptor = programMethod.getDescriptor(programClass);
191 ProgramMethod targetMethod = (ProgramMethod)targetClass.findMethod(name, descriptor);
237 // TODO: Handle non-abstract method with the same name and descriptor in the target class.
242 // constantPoolEditor.addUtf8Constant(newUniqueMemberName(name, descriptor));
286 * Returns a unique class member name, based on the given name and descriptor.
288 private String newUniqueMemberName(String name, String descriptor)
292 name + ClassConstants.SPECIAL_MEMBER_SEPARATOR + Long.toHexString(Math.abs((descriptor).hashCode()));