/external/javassist/src/main/javassist/bytecode/ |
D | ConstantAttribute.java | 67 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()
|
D | InnerClassesAttribute.java | 207 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()
|
D | AnnotationDefaultAttribute.java | 106 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()
|
D | EnclosingMethodAttribute.java | 126 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()
|
D | SyntheticAttribute.java | 52 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 53 return new SyntheticAttribute(newCp); in copy()
|
D | DeprecatedAttribute.java | 52 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 53 return new DeprecatedAttribute(newCp); in copy()
|
D | SourceFileAttribute.java | 67 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 68 return new SourceFileAttribute(newCp, getFileName()); in copy()
|
D | ParameterAnnotationsAttribute.java | 106 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()
|
D | LocalVariableAttribute.java | 293 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()
|
D | LineNumberAttribute.java | 158 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 165 LineNumberAttribute attr = new LineNumberAttribute(newCp, dest); in copy()
|
D | ExceptionTable.java | 238 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()
|
D | ExceptionsAttribute.java | 69 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 70 return new ExceptionsAttribute(newCp, this, classnames); in copy()
|
D | StackMap.java | 118 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()
|
D | AttributeInfo.java | 171 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 178 return new AttributeInfo(newCp, getName(), newInfo); in copy()
|
D | AnnotationsAttribute.java | 162 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()
|
D | StackMapTable.java | 64 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()
|
D | CodeAttribute.java | 131 public AttributeInfo copy(ConstPool newCp, Map classnames) in copy() argument 135 return new CodeAttribute(newCp, this, classnames); in copy()
|
D | SignatureAttribute.java | 84 public AttributeInfo copy(ConstPool newCp, Map classnames) { in copy() argument 85 return new SignatureAttribute(newCp, getSignature()); in copy()
|