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

1 2

  /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++;
FieldIdItem.java 23 public short typeIdx;
30 typeIdx = file.readUShort();
38 file.writeUShort(typeIdx);
47 if (kind == IndexUpdateKind.TYPE_ID && typeIdx >= insertedIdx) {
48 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++;
  /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);
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...]
DexFile.h 341 u2 typeIdx; /* index into typeIds for field type */
413 u2 typeIdx; /* index into typeIds */
813 return pItem->typeIdx;
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
EnumElementValue.java 31 private final int typeIdx;
35 public EnumElementValue(final int type, final int typeIdx, final int valueIdx,
43 this.typeIdx = typeIdx;
51 dos.writeShort(typeIdx); // u2
65 final ConstantUtf8 cu8 = (ConstantUtf8) super.getConstantPool().getConstant(typeIdx,
84 return typeIdx;
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
EnumElementValueGen.java 33 private int typeIdx;
39 * value - as indicated by typeIdx and valueIdx. This ctor is used for
42 protected EnumElementValueGen(final int typeIdx, final int valueIdx,
50 this.typeIdx = typeIdx;
62 return new EnumElementValue(super.getElementValueType(), typeIdx, valueIdx,
69 typeIdx = cpool.addUtf8(t.getSignature());// was addClass(t);
79 typeIdx = cpool.addUtf8(value.getEnumTypeString());// was
86 typeIdx = value.getTypeIndex();
95 dos.writeShort(typeIdx); // u
    [all...]
  /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];
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...]
measunit.cpp 1211 for (int32_t typeIdx = 0; typeIdx < UPRV_LENGTHOF(gTypes); ++typeIdx) {
1212 int32_t len = gOffsets[typeIdx + 1] - gOffsets[typeIdx];
1214 dest[idx].setTo(typeIdx, subTypeIdx);
1230 int32_t typeIdx = binarySearch(gTypes, 0, UPRV_LENGTHOF(gTypes), type);
1231 if (typeIdx == -1) {
1234 int32_t len = gOffsets[typeIdx + 1] - gOffsets[typeIdx];
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/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/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) + " // " +
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
LegalizerInfo.h 148 unsigned TypeIdx;
149 /// If describing an action, the new type for TypeIdx. Otherwise LLT{}.
152 LegalizeActionStep(LegalizeAction Action, unsigned TypeIdx,
154 : Action(Action), TypeIdx(TypeIdx), NewType(NewType) {}
157 return std::tie(Action, TypeIdx, NewType) ==
158 std::tie(RHS.Action, RHS.TypeIdx, RHS.NewType);
191 LegalityPredicate typeIs(unsigned TypeIdx, LLT TypesInit);
193 LegalityPredicate typeInSet(unsigned TypeIdx,
206 LegalityPredicate isScalar(unsigned TypeIdx);
    [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);
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 609 int typeIdx = in.readUnsignedShort();
612 CstString type = (CstString) pool.get(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)
  /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...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MeasureUnitTest.java     [all...]

Completed in 2077 milliseconds

1 2