/dalvik/dx/src/com/android/dex/ |
D | FieldId.java | 24 private final int typeIndex; field in FieldId 27 public FieldId(Dex dex, int declaringClassIndex, int typeIndex, int nameIndex) { in FieldId() argument 30 this.typeIndex = typeIndex; in FieldId() 39 return typeIndex; in getTypeIndex() 54 return Unsigned.compare(typeIndex, other.typeIndex); // should always be 0 in compareTo() 59 out.writeUnsignedShort(typeIndex); in writeTo() 66 return declaringClassIndex + " " + typeIndex + " " + nameIndex; in toString() 68 return dex.typeNames().get(typeIndex) + "." + dex.strings().get(nameIndex); in toString()
|
D | ClassDef.java | 26 private final int typeIndex; field in ClassDef 35 public ClassDef(Dex buffer, int offset, int typeIndex, int accessFlags, in ClassDef() argument 40 this.typeIndex = typeIndex; in ClassDef() 55 return typeIndex; in getTypeIndex() 93 return typeIndex + " " + supertypeIndex; in toString() 97 result.append(buffer.typeNames().get(typeIndex)); in toString()
|
D | Dex.java | 321 public int descriptorIndexFromTypeIndex(int typeIndex) { in descriptorIndexFromTypeIndex() argument 322 checkBounds(typeIndex, tableOfContents.typeIds.size); in descriptorIndexFromTypeIndex() 323 int position = tableOfContents.typeIds.off + (SizeOf.TYPE_ID_ITEM * typeIndex); in descriptorIndexFromTypeIndex() 424 int typeIndex = readUnsignedShort(); in readFieldId() local 426 return new FieldId(Dex.this, declaringClassIndex, typeIndex, nameIndex); in readFieldId()
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
D | FindUsages.java | 70 int typeIndex = Collections.binarySearch(dex.typeIds(), typeStringIndex); in FindUsages() local 71 if (typeIndex < 0) { in FindUsages() 74 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex)); in FindUsages() 75 fieldIds.addAll(getFieldIds(dex, memberNameIndexes, typeIndex)); in FindUsages() 191 private Set<Integer> findAssignableTypes(Dex dex, int typeIndex) { in findAssignableTypes() argument 193 assignableTypes.add(typeIndex); in findAssignableTypes()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | DebugInfoDecoder.java | 159 public int typeIndex; field in DebugInfoDecoder.LocalEntry 165 int typeIndex, int signatureIndex) { in LocalEntry() argument 170 this.typeIndex = typeIndex; in LocalEntry() 177 nameIndex, typeIndex, signatureIndex); in toString() 333 prevle.nameIndex, prevle.typeIndex, 0); in decode0() 358 prevle.nameIndex, prevle.typeIndex, in decode0()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | DebugInfoDecoder.java | 170 public int typeIndex; field in DebugInfoDecoder.LocalEntry 176 int typeIndex, int signatureIndex) { in LocalEntry() argument 181 this.typeIndex = typeIndex; in LocalEntry() 189 nameIndex, typeIndex, signatureIndex); in toString() 338 prevle.nameIndex, prevle.typeIndex, 0); in decode0() 363 prevle.nameIndex, prevle.typeIndex, in decode0()
|
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 149 public int adjustType(int typeIndex) { in adjustType() argument 150 return (typeIndex == ClassDef.NO_INDEX) ? ClassDef.NO_INDEX : (typeIds[typeIndex] & 0xffff); in adjustType()
|
D | DexMerger.java | 978 int typeIndex; // uleb128p1 type index. Needs indexMap adjustment. in transformDebugInfoItem() local 1005 typeIndex = in.readUleb128p1(); in transformDebugInfoItem() 1006 debugInfoOut.writeUleb128p1(indexMap.adjustType(typeIndex)); in transformDebugInfoItem()
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
D | AnnotationParser.java | 245 int typeIndex = input.readUnsignedShort(); in parseAnnotation() local 247 CstString typeString = (CstString) pool.get(typeIndex); in parseAnnotation()
|