OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:typeIdx
(Results
1 - 16
of
16
) 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
;
DexDebugInfo.cpp
102
u4
typeIdx
= readUnsignedLeb128(pStream);
105
if (
typeIdx
== 0) {
108
return dexStringByTypeIdx(pDexFile,
typeIdx
- 1);
DexSwapVerify.cpp
259
static bool setDefinedClassBit(const CheckState* state, u4
typeIdx
) {
260
u4 arrayIdx =
typeIdx
>> 5;
261
u4 bit = 1 << (
typeIdx
& 0x1f);
769
SWAP_INDEX2(item->
typeIdx
, state->pHeader->typeIdsSize);
786
s = dexStringByTypeIdx(state->pDexFile, item->
typeIdx
);
821
if (item0->
typeIdx
>= item->
typeIdx
) {
[
all
...]
DexFile.h
279
u2
typeIdx
; /* index into typeIds for field type */
319
u2
typeIdx
; /* index into typeIds */
719
return pItem->
typeIdx
;
/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
704
int16_t transitionIdx,
typeIdx
;
726
for (
typeIdx
= 0;
typeIdx
< typeCount;
typeIdx
++) {
730
if (
typeIdx
== (int16_t)typeMapData[transitionIdx]) {
740
raw = typeOffsets[
typeIdx
<< 1] * U_MILLIS_PER_SECOND;
741
dst = typeOffsets[(
typeIdx
<< 1) + 1] * U_MILLIS_PER_SECOND;
756
historicRules[
typeIdx
] = new TimeArrayTimeZoneRule((dst == 0 ? stdName : dstName),
759
if (historicRules[
typeIdx
] == NULL) {
769
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/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/cf/direct/
StdAttributeFactory.java
574
int
typeIdx
= in.readUnsignedShort();
577
CstString type = (CstString) pool.get(
typeIdx
);
/dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java
290
int
typeIdx
= readStringIndex(bs);
292
address, true, reg, nameIdx,
typeIdx
, 0);
302
int
typeIdx
= readStringIndex(bs);
305
address, true, reg, nameIdx,
typeIdx
, sigIdx);
ValueEncoder.java
313
int
typeIdx
= typeIds.indexOf(type);
316
out.annotate(" type_idx: " + Hex.u4(
typeIdx
) + " // " +
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java
233
mFieldIds[i].
typeIdx
= readShort() & 0xffff;
397
classNameFromTypeIndex(fieldId.
typeIdx
),
580
public int
typeIdx
; // index into type_ids (field type)
/dalvik/vm/reflect/
Annotation.cpp
746
u4
typeIdx
, size, count;
749
typeIdx
= readUleb128(&ptr);
752
LOGVV("----- processEnc ptr=%p type=%d size=%d", ptr,
typeIdx
, size);
754
annoClass = dvmDexGetResolvedClass(clazz->pDvmDex,
typeIdx
);
756
annoClass = dvmResolveClass(clazz,
typeIdx
, true);
759
clazz->descriptor,
typeIdx
);
765
LOGV("----- processEnc ptr=%p [0x%06x]
typeIdx
=%d size=%d class=%s",
767
typeIdx
, size, annoClass->descriptor);
891
u4
typeIdx
;
905
typeIdx
= readUleb128(&ptr)
[
all
...]
/frameworks/base/tools/aapt/
ResourceTable.cpp
331
ssize_t
typeIdx
= block.indexOfAttribute(NULL, "format");
332
if (
typeIdx
>= 0) {
333
String16 typeStr = String16(block.getAttributeStringValue(
typeIdx
, &len));
[
all
...]
Completed in 233 milliseconds