HomeSort by relevance Sort by last modified time
    Searched full:newcp (Results 1 - 20 of 20) sorted by null

  /external/javassist/src/main/javassist/bytecode/
ConstantAttribute.java 63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
68 int index = getConstPool().copy(getConstantValue(), newCp,
70 return new ConstantAttribute(newCp, index);
DeprecatedAttribute.java 49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
53 return new DeprecatedAttribute(newCp);
SyntheticAttribute.java 49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
53 return new SyntheticAttribute(newCp);
SourceFileAttribute.java 63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
68 return new SourceFileAttribute(newCp, getFileName());
EnclosingMethodAttribute.java 122 * @param newCp the constant pool table used by the new copy.
126 public AttributeInfo copy(ConstPool newCp, Map classnames) {
128 return new EnclosingMethodAttribute(newCp, className());
130 return new EnclosingMethodAttribute(newCp, className(),
InnerClassesAttribute.java 203 * @param newCp the constant pool table used by the new copy.
207 public AttributeInfo copy(ConstPool newCp, Map classnames) {
211 InnerClassesAttribute attr = new InnerClassesAttribute(newCp, dest);
222 innerClass = cp.copy(innerClass, newCp, classnames);
227 outerClass = cp.copy(outerClass, newCp, classnames);
232 innerName = cp.copy(innerName, newCp, classnames);
AnnotationDefaultAttribute.java 106 public AttributeInfo copy(ConstPool newCp, Map classnames) {
108 = new AnnotationsAttribute.Copier(info, constPool, newCp, classnames);
111 return new AnnotationDefaultAttribute(newCp, copier.close());
ExceptionTable.java 234 * @param newCp the constant pool table used by the new copy.
238 public ExceptionTable copy(ConstPool newCp, Map classnames) {
239 ExceptionTable et = new ExceptionTable(newCp);
244 int type = srcCp.copy(e.catchType, newCp, classnames);
ExceptionsAttribute.java 65 * @param newCp the constant pool table used by the new copy.
69 public AttributeInfo copy(ConstPool newCp, Map classnames) {
70 return new ExceptionsAttribute(newCp, this, classnames);
LineNumberAttribute.java 155 * @param newCp the constant pool table used by the new copy.
158 public AttributeInfo copy(ConstPool newCp, Map classnames) {
165 LineNumberAttribute attr = new LineNumberAttribute(newCp, dest);
ParameterAnnotationsAttribute.java 106 public AttributeInfo copy(ConstPool newCp, Map classnames) {
107 Copier copier = new Copier(info, constPool, newCp, classnames);
110 return new ParameterAnnotationsAttribute(newCp, getName(),
LocalVariableAttribute.java 290 * @param newCp the constant pool table used by the new copy.
293 public AttributeInfo copy(ConstPool newCp, Map classnames) {
297 LocalVariableAttribute attr = makeThisAttr(newCp, dest);
311 name = cp.copy(name, newCp, null);
318 type = newCp.addUtf8Info(sig);
AttributeInfo.java 167 * @param newCp the constant pool table used by the new copy.
171 public AttributeInfo copy(ConstPool newCp, Map classnames) {
178 return new AttributeInfo(newCp, getName(), newInfo);
StackMap.java 118 public AttributeInfo copy(ConstPool newCp, Map classnames) {
119 Copier copier = new Copier(this, newCp, classnames);
228 Copier(StackMap map, ConstPool newCp, Map classnames) {
232 destCp = newCp;
CodeAttribute.java 121 * @param newCp the constant pool table used by the new copy.
131 public AttributeInfo copy(ConstPool newCp, Map classnames)
135 return new CodeAttribute(newCp, this, classnames);
AnnotationsAttribute.java 162 public AttributeInfo copy(ConstPool newCp, Map classnames) {
163 Copier copier = new Copier(info, constPool, newCp, classnames);
166 return new AnnotationsAttribute(newCp, getName(), copier.close());
SignatureAttribute.java 80 * @param newCp the constant pool table used by the new copy.
84 public AttributeInfo copy(ConstPool newCp, Map classnames) {
85 return new SignatureAttribute(newCp, getSignature());
StackMapTable.java 64 public AttributeInfo copy(ConstPool newCp, Map classnames)
68 return new StackMapTable(newCp,
69 new Copier(this.constPool, info, newCp).doit());
  /external/e2fsprogs/util/
subst.c 273 char oldbuf[2048], newbuf[2048], *oldcp, *newcp; local
287 newcp = fgets(newbuf, sizeof(newbuf), new_f);
288 if (!oldcp && !newcp) {
292 if (!oldcp || !newcp || strcmp(oldbuf, newbuf)) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]

Completed in 320 milliseconds