HomeSort by relevance Sort by last modified time
    Searched refs:typeIdx (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeItem.java 22 public short typeIdx;
26 typeIdx = file.readUShort();
31 file.writeUShort(typeIdx);
36 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) {
37 typeIdx++;
EncodedTypeAddrPair.java 22 public int typeIdx;
27 typeIdx = file.readUleb128();
33 file.writeUleb128(typeIdx);
39 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) {
40 typeIdx++;
EncodedAnnotation.java 22 public int typeIdx;
28 typeIdx = file.readUleb128();
40 file.writeUleb128(typeIdx);
51 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) {
52 typeIdx++;
FieldIdItem.java 23 public short typeIdx;
30 typeIdx = file.readUShort();
38 file.writeUShort(typeIdx);
47 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) {
48 typeIdx++;
TypeList.java 60 if (list[i].typeIdx < other.list[i].typeIdx) {
62 } else if (list[i].typeIdx > other.list[i].typeIdx) {
  /dalvik/libdex/
DexCatch.h 31 u4 typeIdx; /* type index of the caught exception type */
60 pIterator->handler.typeIdx = 0;
97 pIterator->handler.typeIdx = kDexNoIndex;
99 u4 typeIdx = readUnsignedLeb128(&pIterator->pEncodedData);
100 pIterator->handler.typeIdx = typeIdx;
DexDebugInfo.cpp 50 u4 typeIdx = readUnsignedLeb128(pStream);
53 if (typeIdx == 0) {
56 return dexStringByTypeIdx(pDexFile, typeIdx - 1);
DexFile.h 335 u2 typeIdx; /* index into typeIds for field type */
407 u2 typeIdx; /* index into typeIds */
807 return pItem->typeIdx;
    [all...]
DexSwapVerify.cpp 235 static bool setDefinedClassBit(const CheckState* state, u4 typeIdx) {
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) {
    [all...]
  /test/suite_harness/tools/dex-tools/src/dex/reader/
DexEncodedAnnotationImpl.java 35 private int typeIdx;
50 typeIdx = buffer.readUleb128();
68 return stringPool[typeIds[typeIdx]];
  /external/icu/icu4c/source/i18n/
olsontz.h 416 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1;
417 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1];
422 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1;
423 return typeOffsets[typeIdx];
428 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1;
429 return typeOffsets[typeIdx + 1];
measunit.cpp 1148 for (int32_t typeIdx = 0; typeIdx < UPRV_LENGTHOF(gTypes); ++typeIdx) {
1149 int32_t len = gOffsets[typeIdx + 1] - gOffsets[typeIdx];
1151 dest[idx].setTo(typeIdx, subTypeIdx);
1167 int32_t typeIdx = binarySearch(gTypes, 0, UPRV_LENGTHOF(gTypes), type);
1168 if (typeIdx == -1) {
1171 int32_t len = gOffsets[typeIdx + 1] - gOffsets[typeIdx];
    [all...]
olsontz.cpp 732 int16_t transitionIdx, typeIdx;
754 for (typeIdx = 0; typeIdx < typeCount; typeIdx++) {
758 if (typeIdx == (int16_t)typeMapData[transitionIdx]) {
768 raw = typeOffsets[typeIdx << 1] * U_MILLIS_PER_SECOND;
769 dst = typeOffsets[(typeIdx << 1) + 1] * U_MILLIS_PER_SECOND;
784 historicRules[typeIdx] = new TimeArrayTimeZoneRule((dst == 0 ? stdName : dstName),
787 if (historicRules[typeIdx] == NULL) {
797 typeIdx = (int16_t)typeMapData[firstTZTransitionIdx]
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 144 int typeIdx = findTypeId(typeName);
147 if (classIdx < 0 || typeIdx < 0 || nameIdx < 0) {
161 && typeIdx < fieldId.typeIdx) {
413 int typeIdx = findOrCreateTypeId(typeName);
415 // The creation of the typeIdx may have changed the classIdx, search again!
424 newFieldId.typeIdx = (short) typeIdx;
460 int typeIdx = findTypeId(typeName);
461 if (typeIdx == -1)
    [all...]
Program.java 276 int typeIdx = classDataItem.meta.classDefItem.classIdx;
277 TypeIdItem typeIdItem = rawDexFile.typeIds.get(typeIdx);
618 * @param typeIdx
621 public String getTypeString(int typeIdx) {
622 TypeIdItem typeIdItem = rawDexFile.typeIds.get(typeIdx);
  /external/deqp/modules/gles31/functional/
es31fNegativeSampleVariablesTests.cpp 250 for (int typeIdx = 0; typeIdx < MAX_TYPES; typeIdx++)
261 << " highp int invalidValue = " << testConfigs.builtInType[typeIdx] << "[invalidIndex]; \n"
265 ctx.beginSection("OES_sample_variables: using constant integral expression outside of " + testConfigs.builtInType[typeIdx] + " bounds");
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
OlsonTimeZone.java 760 int typeIdx = transIdx >= 0 ? getInt(typeMapData[transIdx]) * 2 : 0;
761 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1];
765 int typeIdx = transIdx >= 0 ? getInt(typeMapData[transIdx]) * 2 : 0;
766 return typeOffsets[typeIdx];
770 int typeIdx = transIdx >= 0 ? getInt(typeMapData[transIdx]) * 2 : 0;
771 return typeOffsets[typeIdx + 1];
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 758 int typeIdx = transIdx >= 0 ? getInt(typeMapData[transIdx]) * 2 : 0;
759 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1];
763 int typeIdx = transIdx >= 0 ? getInt(typeMapData[transIdx]) * 2 : 0;
764 return typeOffsets[typeIdx];
768 int typeIdx = transIdx >= 0 ? getInt(typeMapData[transIdx]) * 2 : 0;
769 return typeOffsets[typeIdx + 1];
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java 296 int typeIdx = readStringIndex(bs);
298 address, true, reg, nameIdx, typeIdx, 0);
308 int typeIdx = readStringIndex(bs);
311 address, true, reg, nameIdx, typeIdx, sigIdx);
ValueEncoder.java 315 int typeIdx = typeIds.indexOf(type);
318 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java 301 int typeIdx = readStringIndex(bs);
303 address, true, reg, nameIdx, typeIdx, 0);
313 int typeIdx = readStringIndex(bs);
316 address, true, reg, nameIdx, typeIdx, sigIdx);
ValueEncoder.java 336 int typeIdx = typeIds.indexOf(type);
339 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 236 mFieldIds[i].typeIdx = readShort() & 0xffff;
400 classNameFromTypeIndex(fieldId.typeIdx),
598 public int typeIdx; // index into type_ids (field type)
  /frameworks/base/tools/aapt/
ResourceTable.cpp 364 ssize_t typeIdx = block.indexOfAttribute(NULL, "format");
365 if (typeIdx >= 0) {
366 String16 typeStr = String16(block.getAttributeStringValue(typeIdx, &len));
    [all...]
  /dalvik/dexdump/
DexDump.cpp 561 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);
    [all...]

Completed in 801 milliseconds

1 2 3 4