Home
last modified time | relevance | path

Searched refs:typeIdx (Results 1 – 7 of 7) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DTypeItem.java22 public short typeIdx; field in TypeItem
26 typeIdx = file.readUShort(); in read()
31 file.writeUShort(typeIdx); in write()
36 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) { in incrementIndex()
37 typeIdx++; in incrementIndex()
DEncodedTypeAddrPair.java22 public int typeIdx; field in EncodedTypeAddrPair
27 typeIdx = file.readUleb128(); in read()
33 file.writeUleb128(typeIdx); in write()
39 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) { in incrementIndex()
40 typeIdx++; in incrementIndex()
DFieldIdItem.java23 public short typeIdx; field in FieldIdItem
30 typeIdx = file.readUShort(); in read()
38 file.writeUShort(typeIdx); in write()
47 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) { in incrementIndex()
48 typeIdx++; in incrementIndex()
DEncodedAnnotation.java22 public int typeIdx; field in EncodedAnnotation
28 typeIdx = file.readUleb128(); in read()
40 file.writeUleb128(typeIdx); in write()
51 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) { in incrementIndex()
52 typeIdx++; in incrementIndex()
DTypeList.java60 if (list[i].typeIdx < other.list[i].typeIdx) { in comesBefore()
62 } else if (list[i].typeIdx > other.list[i].typeIdx) { in comesBefore()
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java144 int typeIdx = findTypeId(typeName); in findFieldIdInsertionPoint() local
147 if (classIdx < 0 || typeIdx < 0 || nameIdx < 0) { in findFieldIdInsertionPoint()
161 && typeIdx < fieldId.typeIdx) { in findFieldIdInsertionPoint()
413 int typeIdx = findOrCreateTypeId(typeName); in createFieldId() local
424 newFieldId.typeIdx = (short) typeIdx; in createFieldId()
460 int typeIdx = findTypeId(typeName); in findFieldId() local
461 if (typeIdx == -1) { in findFieldId()
472 && typeIdx == fieldId.typeIdx in findFieldId()
606 int typeIdx = findTypeId(parameter); in convertParameterListToTypeIdList() local
607 if (typeIdx == -1) { in convertParameterListToTypeIdList()
[all …]
DProgram.java276 int typeIdx = classDataItem.meta.classDefItem.classIdx; in associateCodeItemsWithMethodNames() local
277 TypeIdItem typeIdItem = rawDexFile.typeIds.get(typeIdx); in associateCodeItemsWithMethodNames()
621 public String getTypeString(int typeIdx) { in getTypeString() argument
622 TypeIdItem typeIdItem = rawDexFile.typeIds.get(typeIdx); in getTypeString()