HomeSort by relevance Sort by last modified time
    Searched refs:fieldrefConstant (Results 1 - 12 of 12) sorted by null

  /external/proguard/src/proguard/classfile/editor/
ConstantAdder.java 131 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
134 clazz.constantPoolEntryAccept(fieldrefConstant.u2classIndex, this);
140 fieldrefConstant.getName(clazz),
141 fieldrefConstant.getType(clazz),
142 fieldrefConstant.referencedClass,
143 fieldrefConstant.referencedMember);
MemberReferenceFixer.java 121 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
124 Member referencedMember = fieldrefConstant.referencedMember;
127 Clazz referencedClass = fieldrefConstant.referencedClass;
133 if (!fieldrefConstant.getName(clazz).equals(newName) ||
134 !fieldrefConstant.getType(clazz).equals(newType))
138 debug(clazz, fieldrefConstant, referencedClass, referencedMember);
142 fieldrefConstant.u2nameAndTypeIndex =
ConstantPoolRemapper.java 116 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
118 fieldrefConstant.u2classIndex =
119 remapConstantIndex(fieldrefConstant.u2classIndex);
120 fieldrefConstant.u2nameAndTypeIndex =
121 remapConstantIndex(fieldrefConstant.u2nameAndTypeIndex);
ConstantPoolEditor.java 202 * Finds or creates a FieldrefConstant constant pool entry for the given
204 * @return the constant pool index of the FieldrefConstant.
218 * Finds or creates a FieldrefConstant constant pool entry with the given
220 * @return the constant pool index of the FieldrefConstant.
236 * Finds or creates a FieldrefConstant constant pool entry with the given
238 * @return the constant pool index of the FieldrefConstant.
253 * Finds or creates a FieldrefConstant constant pool entry with the given
255 * @return the constant pool index of the FieldrefConstant.
271 * Finds or creates a FieldrefConstant constant pool entry with the given
274 * @return the constant pool index of the FieldrefConstant
    [all...]
  /external/proguard/src/proguard/obfuscate/
NameAndTypeUsageMarker.java 68 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
70 visitRefConstant(clazz, fieldrefConstant);
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantVisitor.java 41 public void visitFieldrefConstant( Clazz clazz, FieldrefConstant fieldrefConstant);
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 184 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
189 setFieldValue(clazz, fieldrefConstant, stack.pop());
195 setFieldClassValue(clazz, fieldrefConstant, stack.apop());
201 String type = fieldrefConstant.getType(clazz);
203 stack.push(getFieldValue(clazz, fieldrefConstant, type));
  /external/proguard/src/proguard/optimize/info/
ReadWriteFieldMarker.java 99 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
102 fieldrefConstant.referencedMemberAccept(this);
SideEffectInstructionChecker.java 153 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
159 fieldrefConstant.referencedMemberAccept(this);
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 233 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
235 String type = fieldrefConstant.getType(clazz);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 225 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
227 println(visitorInfo(fieldrefConstant) + " Fieldref [" +
228 clazz.getClassName(fieldrefConstant.u2classIndex) + "." +
229 clazz.getName(fieldrefConstant.u2nameAndTypeIndex) + " " +
230 clazz.getType(fieldrefConstant.u2nameAndTypeIndex) + "]");
    [all...]
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 169 public void visitFieldrefConstant(Clazz clazz, FieldrefConstant fieldrefConstant)
171 visitAnyRefConstant(clazz, fieldrefConstant);

Completed in 1374 milliseconds