Searched refs:typeIdx (Results 1 - 11 of 11) sorted by relevance

/dalvik/libdex/
H A DDexCatch.h31 u4 typeIdx; /* type index of the caught exception type */ member in struct:DexCatchHandler
60 pIterator->handler.typeIdx = 0;
97 pIterator->handler.typeIdx = kDexNoIndex;
99 u4 typeIdx = readUnsignedLeb128(&pIterator->pEncodedData); local
100 pIterator->handler.typeIdx = typeIdx;
H A DDexDebugInfo.cpp102 u4 typeIdx = readUnsignedLeb128(pStream); local
105 if (typeIdx == 0) {
108 return dexStringByTypeIdx(pDexFile, typeIdx - 1);
H A DDexFile.h330 u2 typeIdx; /* index into typeIds for field type */ member in struct:DexFieldId
402 u2 typeIdx; /* index into typeIds */ member in struct:DexTypeItem
802 return pItem->typeIdx;
H A DDexSwapVerify.cpp235 static bool setDefinedClassBit(const CheckState* state, u4 typeIdx) { argument
236 u4 arrayIdx = typeIdx >> 5;
237 u4 bit = 1 << (typeIdx & 0x1f);
753 SWAP_INDEX2(item->typeIdx, state->pHeader->typeIdsSize);
770 s = dexStringByTypeIdx(state->pDexFile, item->typeIdx);
805 if (item0->typeIdx >= item->typeIdx) {
1396 SWAP_INDEX2(pType->typeIdx, state->pHeader->typeIdsSize);
1756 u4 typeIdx = local
1764 CHECK_INDEX(typeIdx, stat
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoDecoder.java296 int typeIdx = readStringIndex(bs);
298 address, true, reg, nameIdx, typeIdx, 0);
308 int typeIdx = readStringIndex(bs);
311 address, true, reg, nameIdx, typeIdx, sigIdx);
H A DValueEncoder.java315 int typeIdx = typeIds.indexOf(type);
318 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoDecoder.java300 int typeIdx = readStringIndex(bs);
302 address, true, reg, nameIdx, typeIdx, 0);
312 int typeIdx = readStringIndex(bs);
315 address, true, reg, nameIdx, typeIdx, sigIdx);
H A DValueEncoder.java337 int typeIdx = typeIds.indexOf(type);
340 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DDexData.java235 mFieldIds[i].typeIdx = readShort() & 0xffff;
399 classNameFromTypeIndex(fieldId.typeIdx),
593 public int typeIdx; // index into type_ids (field type) field in class:DexData.FieldIdItem
/dalvik/dexdump/
H A DDexDump.cpp561 dexStringByTypeIdx(pDexFile, pTypeItem->typeIdx);
607 descriptor = (handler->typeIdx == kDexNoIndex) ? "<any>" :
608 dexStringByTypeIdx(pDexFile, handler->typeIdx);
695 pFieldInfo->signature = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
736 if (paramTypes->list[i].typeIdx >= pDexFile->pHeader->typeIdsSize) {
740 const char* param = dexStringByTypeIdx(pDexFile, paramTypes->list[i].typeIdx);
1423 typeDescriptor = dexStringByTypeIdx(pDexFile, pFieldId->typeIdx);
/dalvik/dx/src/com/android/dx/cf/direct/
H A DStdAttributeFactory.java609 int typeIdx = in.readUnsignedShort();
612 CstString type = (CstString) pool.get(typeIdx);

Completed in 1630 milliseconds