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

  /cts/tools/dex-tools/src/dex/reader/
DexEncodedAnnotationImpl.java 35 private int typeIdx;
50 typeIdx = buffer.readUleb128();
68 return stringPool[typeIds[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;
DexFile.c 814 u4 typeIdx = readUnsignedLeb128(pStream);
817 if (typeIdx == 0) {
820 return dexStringByTypeIdx(pDexFile, typeIdx - 1);
DexSwapVerify.c 258 static bool setDefinedClassBit(const CheckState* state, u4 typeIdx) {
259 u4 arrayIdx = typeIdx >> 5;
260 u4 bit = 1 << (typeIdx & 0x1f);
768 SWAP_INDEX2(item->typeIdx, state->pHeader->typeIdsSize);
785 s = dexStringByTypeIdx(state->pDexFile, item->typeIdx);
820 if (item0->typeIdx >= item->typeIdx) {
    [all...]
DexFile.h 256 u2 typeIdx; /* index into typeIds for field type */
296 u2 typeIdx; /* index into typeIds */
692 return pItem->typeIdx;
    [all...]
  /external/icu4c/i18n/
olsontz.h 396 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1;
397 return typeOffsets[typeIdx] + typeOffsets[typeIdx + 1];
402 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1;
403 return typeOffsets[typeIdx];
408 int16_t typeIdx = (transIdx >= 0 ? typeMapData[transIdx] : 0) << 1;
409 return typeOffsets[typeIdx + 1];
olsontz.cpp 702 int16_t transitionIdx, typeIdx;
724 for (typeIdx = 0; typeIdx < typeCount; typeIdx++) {
728 if (typeIdx == (int16_t)typeMapData[transitionIdx]) {
738 raw = typeOffsets[typeIdx << 1] * U_MILLIS_PER_SECOND;
739 dst = typeOffsets[(typeIdx << 1) + 1] * U_MILLIS_PER_SECOND;
754 historicRules[typeIdx] = new TimeArrayTimeZoneRule((dst == 0 ? stdName : dstName),
757 if (historicRules[typeIdx] == NULL) {
767 typeIdx = (int16_t)typeMapData[firstTZTransitionIdx]
    [all...]
zstrfmt.cpp 101 int32_t typeIdx = 0;
104 typeIdx = ZSIDX_LOCATION;
107 typeIdx = ZSIDX_LONG_GENERIC;
110 typeIdx = ZSIDX_SHORT_GENERIC;
113 typeIdx = ZSIDX_LONG_STANDARD;
116 typeIdx = ZSIDX_SHORT_STANDARD;
119 typeIdx = ZSIDX_LONG_DAYLIGHT;
122 typeIdx = ZSIDX_SHORT_DAYLIGHT;
125 return typeIdx;
129 getTimeZoneTranslationType(TimeZoneTranslationTypeIndex typeIdx) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 575 int typeIdx = in.readUnsignedShort();
578 CstUtf8 type = (CstUtf8) pool.get(typeIdx);
  /dalvik/dx/src/com/android/dx/dex/file/
ValueEncoder.java 315 int typeIdx = typeIds.indexOf(type);
318 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
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);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 226 mFieldIds[i].typeIdx = readShort() & 0xffff;
390 classNameFromTypeIndex(fieldId.typeIdx),
571 public int typeIdx; // index into type_ids (field type)
  /external/chromium/third_party/icu/source/i18n/
olsontz.cpp 641 int16_t transitionIdx, typeIdx;
647 typeIdx = (int16_t)typeData[0]; // initial type
648 raw = rawOffset(typeIdx) * U_MILLIS_PER_SECOND;
649 dst = dstOffset(typeIdx) * U_MILLIS_PER_SECOND;
661 if (typeIdx != (int16_t)typeData[transitionIdx]) {
675 for (typeIdx = 0; typeIdx < typeCount; typeIdx++) {
679 if (typeIdx == (int16_t)typeData[transitionIdx]) {
689 raw = rawOffset(typeIdx) * U_MILLIS_PER_SECOND
    [all...]
zstrfmt.cpp 99 int32_t typeIdx = 0;
102 typeIdx = ZSIDX_LOCATION;
105 typeIdx = ZSIDX_LONG_GENERIC;
108 typeIdx = ZSIDX_SHORT_GENERIC;
111 typeIdx = ZSIDX_LONG_STANDARD;
114 typeIdx = ZSIDX_SHORT_STANDARD;
117 typeIdx = ZSIDX_LONG_DAYLIGHT;
120 typeIdx = ZSIDX_SHORT_DAYLIGHT;
123 return typeIdx;
127 getTimeZoneTranslationType(TimeZoneTranslationTypeIndex typeIdx) {
    [all...]
  /dalvik/vm/reflect/
Annotation.c 808 u4 typeIdx, size, count;
811 typeIdx = readUleb128(&ptr);
814 LOGVV("----- processEnc ptr=%p type=%d size=%d\n", ptr, typeIdx, size);
816 annoClass = dvmDexGetResolvedClass(clazz->pDvmDex, typeIdx);
818 annoClass = dvmResolveClass(clazz, typeIdx, true);
821 clazz->descriptor, typeIdx);
827 LOGV("----- processEnc ptr=%p [0x%06x] typeIdx=%d size=%d class=%s\n",
829 typeIdx, size, annoClass->descriptor);
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 330 ssize_t typeIdx = block.indexOfAttribute(NULL, "format");
331 if (typeIdx >= 0) {
332 String16 typeStr = String16(block.getAttributeStringValue(typeIdx, &len));
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 390 milliseconds