Home
last modified time | relevance | path

Searched refs:newCp (Results 1 – 18 of 18) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DConstantAttribute.java67 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
68 int index = getConstPool().copy(getConstantValue(), newCp, in copy()
70 return new ConstantAttribute(newCp, index); in copy()
DInnerClassesAttribute.java207 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
211 InnerClassesAttribute attr = new InnerClassesAttribute(newCp, dest); in copy()
222 innerClass = cp.copy(innerClass, newCp, classnames); in copy()
227 outerClass = cp.copy(outerClass, newCp, classnames); in copy()
232 innerName = cp.copy(innerName, newCp, classnames); in copy()
DAnnotationDefaultAttribute.java106 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
108 = new AnnotationsAttribute.Copier(info, constPool, newCp, classnames); in copy()
111 return new AnnotationDefaultAttribute(newCp, copier.close()); in copy()
DEnclosingMethodAttribute.java126 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
128 return new EnclosingMethodAttribute(newCp, className()); in copy()
130 return new EnclosingMethodAttribute(newCp, className(), in copy()
DSyntheticAttribute.java52 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
53 return new SyntheticAttribute(newCp); in copy()
DDeprecatedAttribute.java52 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
53 return new DeprecatedAttribute(newCp); in copy()
DSourceFileAttribute.java67 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
68 return new SourceFileAttribute(newCp, getFileName()); in copy()
DParameterAnnotationsAttribute.java106 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
107 Copier copier = new Copier(info, constPool, newCp, classnames); in copy()
110 return new ParameterAnnotationsAttribute(newCp, getName(), in copy()
DLocalVariableAttribute.java293 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
297 LocalVariableAttribute attr = makeThisAttr(newCp, dest); in copy()
311 name = cp.copy(name, newCp, null); in copy()
318 type = newCp.addUtf8Info(sig); in copy()
DLineNumberAttribute.java158 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
165 LineNumberAttribute attr = new LineNumberAttribute(newCp, dest); in copy()
DExceptionTable.java238 public ExceptionTable copy(ConstPool newCp, Map classnames) { in copy() argument
239 ExceptionTable et = new ExceptionTable(newCp); in copy()
244 int type = srcCp.copy(e.catchType, newCp, classnames); in copy()
DExceptionsAttribute.java69 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
70 return new ExceptionsAttribute(newCp, this, classnames); in copy()
DStackMap.java118 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
119 Copier copier = new Copier(this, newCp, classnames); in copy()
228 Copier(StackMap map, ConstPool newCp, Map classnames) { in Copier() argument
232 destCp = newCp; in Copier()
DAttributeInfo.java171 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
178 return new AttributeInfo(newCp, getName(), newInfo); in copy()
DAnnotationsAttribute.java162 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
163 Copier copier = new Copier(info, constPool, newCp, classnames); in copy()
166 return new AnnotationsAttribute(newCp, getName(), copier.close()); in copy()
DStackMapTable.java64 public AttributeInfo copy(ConstPool newCp, Map classnames) in copy() argument
68 return new StackMapTable(newCp, in copy()
69 new Copier(this.constPool, info, newCp).doit()); in copy()
DCodeAttribute.java131 public AttributeInfo copy(ConstPool newCp, Map classnames) in copy() argument
135 return new CodeAttribute(newCp, this, classnames); in copy()
DSignatureAttribute.java84 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument
85 return new SignatureAttribute(newCp, getSignature()); in copy()