HomeSort by relevance Sort by last modified time
    Searched full:constantpool (Results 1 - 25 of 27) sorted by null

1 2

  /external/proguard/src/proguard/classfile/editor/
ConstantPoolEditor.java 56 Constant[] constantPool = targetClass.constantPool;
61 Constant constant = constantPool[index];
85 Constant[] constantPool = targetClass.constantPool;
90 Constant constant = constantPool[index];
115 Constant[] constantPool = targetClass.constantPool;
120 Constant constant = constantPool[index];
145 Constant[] constantPool = targetClass.constantPool
    [all...]
ConstantPoolSorter.java 66 Constant constant = programClass.constantPool[oldIndex];
112 System.arraycopy(newConstantPool, 0, programClass.constantPool, 0, newLength);
117 programClass.constantPool[index] = null;
MemberReferenceFixer.java 70 Constant constant = programClass.constantPool[index];
195 ((ProgramClass)clazz).constantPool[this.constantIndex] =
251 ((ProgramClass)clazz).constantPool[this.constantIndex] =
  /external/proguard/src/proguard/classfile/
ProgramClass.java 40 public Constant[] constantPool;
76 return constantPool[constantIndex];
109 return constantPool[constantIndex].getTag();
116 return ((Utf8Constant)constantPool[constantIndex]).getString();
129 return ((StringConstant)constantPool[constantIndex]).getString(this);
141 return ((ClassConstant)constantPool[constantIndex]).getName(this);
153 return ((NameAndTypeConstant)constantPool[constantIndex]).getName(this);
165 return ((NameAndTypeConstant)constantPool[constantIndex]).getType(this);
195 ((ClassConstant)constantPool[u2superClass]).referencedClass :
202 return ((ClassConstant)constantPool[u2interfaces[index]]).referencedClass
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 19 import com.android.dx.rop.cst.ConstantPool;
33 private final ConstantPool pool;
42 public RawAttribute(String name, ByteArray data, ConstantPool pool) {
63 int length, ConstantPool pool) {
88 public ConstantPool getPool() {
  /external/proguard/src/proguard/obfuscate/
NameAndTypeShrinker.java 50 shrinkConstantPool(programClass.constantPool,
72 private int shrinkConstantPool(Constant[] constantPool, int length)
89 Constant constant = constantPool[index];
100 constantPool[counter++] = constant;
107 constantPool[index] = null;
Utf8Shrinker.java 50 shrinkConstantPool(programClass.constantPool,
71 private int shrinkConstantPool(Constant[] constantPool, int length)
87 Constant constant = constantPool[index];
98 constantPool[counter++] = constant;
105 constantPool[index] = null;
  /external/proguard/src/proguard/shrink/
ClassShrinker.java 74 shrinkConstantIndexArray(programClass.constantPool,
80 shrinkConstantPool(programClass.constantPool,
278 ((Utf8Constant)((ProgramClass)clazz).constantPool[signatureAttribute.u2signatureIndex]).setString(newSignatureBuffer.toString());
322 private int shrinkConstantPool(Constant[] constantPool, int length)
337 Constant constant = constantPool[index];
347 constantPool[counter++] = constant;
354 constantPool[index] = null;
366 private int shrinkConstantIndexArray(Constant[] constantPool, int[] array, int length)
373 if (usageMarker.isUsed(constantPool[array[index]]))
  /external/proguard/src/proguard/classfile/io/
LibraryClassReader.java 52 private Constant[] constantPool;
95 constantPool = new Constant[u2constantPoolCount];
106 constantPool[index] = constant;
306 ClassConstant classEntry = (ClassConstant)constantPool[constantIndex];
318 return ((Utf8Constant)constantPool[constantIndex]).getString();
ProgramClassReader.java 92 programClass.constantPool = new Constant[programClass.u2constantPoolCount];
97 programClass.constantPool[index] = constant;
105 programClass.constantPool[++index] = null;
    [all...]
  /external/emma/core/java12/com/vladium/jcd/parser/
ClassDefParser.java 225 final IConstantCollection constantPool = m_table.getConstants ();
229 final Field_info field_info = new Field_info (constantPool, m_bytes);
265 final IConstantCollection constantPool = m_table.getConstants ();
269 final Method_info method_info = new Method_info (constantPool, m_bytes);
286 IConstantCollection constantPool = m_table.getConstants ();
290 Attribute_info attribute_info = Attribute_info.new_Attribute_info (constantPool, m_bytes);
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 19 import com.android.dx.rop.cst.ConstantPool;
81 public ConstantPool getConstantPool();
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 24 * Standard implementation of {@link ConstantPool}, which directly stores
28 extends MutabilityControl implements ConstantPool {
ConstantPool.java 23 public interface ConstantPool {
  /external/proguard/src/proguard/classfile/constant/
Constant.java 27 * This abstract class represents an entry in the ConstantPool. Specific types
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 23 import com.android.dx.rop.cst.ConstantPool;
83 ConstantPool pool = cf.getConstantPool();
125 ConstantPool pool = cf.getConstantPool();
StdAttributeFactory.java 51 import com.android.dx.rop.cst.ConstantPool;
219 ConstantPool pool = cf.getConstantPool();
323 ConstantPool pool = cf.getConstantPool();
357 ConstantPool pool = cf.getConstantPool();
414 ConstantPool pool = cf.getConstantPool();
560 ConstantPool pool, ParseObserver observer, int count,
684 ConstantPool pool = cf.getConstantPool();
706 ConstantPool pool = cf.getConstantPool();
MemberListParser.java 24 import com.android.dx.rop.cst.ConstantPool;
178 ConstantPool pool = cf.getConstantPool();
AnnotationParser.java 27 import com.android.dx.rop.cst.ConstantPool;
58 private final ConstantPool pool;
DirectClassFile.java 30 import com.android.dx.rop.cst.ConstantPool;
273 public ConstantPool getConstantPool() {
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 20 import com.android.dx.rop.cst.ConstantPool;
45 private final ConstantPool pool;
54 public BytecodeArray(ByteArray bytes, ConstantPool pool) {
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 
  /development/tools/jdwpspy/
Net.c 116 { 2, 18, "ReferenceType.ConstantPool" },
  /dalvik/vm/jdwp/
JdwpHandler.c     [all...]

Completed in 188 milliseconds

1 2