HomeSort by relevance Sort by last modified time
    Searched defs:classIdx (Results 1 - 7 of 7) sorted by null

  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdItem.java 67 int classIdx = typeIds.indexOf(getDefiningClass());
73 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
79 out.writeShort(classIdx);
ClassDefItem.java 176 int classIdx = typeIds.indexOf(thisClass);
190 out.annotate(4, " class_idx: " + Hex.u4(classIdx));
213 out.writeInt(classIdx);
  /dalvik/vm/analysis/
ReduceConstants.c 374 classDescriptor = dexStringByTypeIdx(pDexFile, pClassDef->classIdx);
393 u2 classIdx = *ptr;
394 if (!dvmSetBit(pResults->usedClasses, classIdx)) {
395 LOGE("Unable to mark class %d as in-use\n", classIdx);
711 pDexTypeId = dexGetTypeId(pDexFile, pDexMethodId->classIdx);
729 pDexTypeId = dexGetTypeId(pDexFile, pDexFieldId->classIdx);
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 225 mFieldIds[i].classIdx = readShort() & 0xffff;
245 mMethodIds[i].classIdx = readShort() & 0xffff;
265 mClassDefs[i].classIdx = readInt();
275 //System.out.println(i + ": " + mClassDefs[i].classIdx + " " +
276 // mStrings[mTypeIds[mClassDefs[i].classIdx].descriptorIdx]);
286 mTypeIds[mClassDefs[i].classIdx].internal = true;
386 if (!mTypeIds[mFieldIds[i].classIdx].internal) {
389 classNameFromTypeIndex(fieldId.classIdx),
392 sparseRefs[mFieldIds[i].classIdx].addField(newFieldRef);
403 if (!mTypeIds[mMethodIds[i].classIdx].internal)
    [all...]
  /dalvik/libdex/
DexSwapVerify.c 235 return field->classIdx == definingClass;
242 return meth->classIdx == definingClass;
767 SWAP_INDEX2(item->classIdx, state->pHeader->typeIdsSize);
779 s = dexStringByTypeIdx(state->pDexFile, item->classIdx);
803 if (item0->classIdx > item->classIdx) {
806 } else if (item0->classIdx < item->classIdx) {
839 SWAP_INDEX2(item->classIdx, state->pHeader->typeIdsSize);
851 s = dexStringByTypeIdx(state->pDexFile, item->classIdx);
    [all...]
DexFile.h 256 u2 classIdx; /* index into typeIds list for defining class */
265 u2 classIdx; /* index into typeIds list for defining class */
283 u4 classIdx; /* index into typeIds for this class */
804 return dexStringByTypeIdx(pDexFile, pClassDef->classIdx);
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 230 milliseconds