Searched defs:lastIndex (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DEncodedMember.java78 * @param lastIndex {@code >= 0;} the previous member index value encoded, or
85 int lastIndex, int dumpSeq);
84 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedField.java134 int lastIndex, int dumpSeq) {
136 int diff = fieldIdx - lastIndex;
133 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedMethod.java160 int lastIndex, int dumpSeq) {
162 int diff = methodIdx - lastIndex;
159 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
/dalvik/dx/src/com/android/dx/dex/file/
H A DEncodedMember.java77 * @param lastIndex {@code >= 0;} the previous member index value encoded, or
84 int lastIndex, int dumpSeq);
83 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedField.java133 int lastIndex, int dumpSeq) {
135 int diff = fieldIdx - lastIndex;
132 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedMethod.java159 int lastIndex, int dumpSeq) {
161 int diff = methodIdx - lastIndex;
158 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
/dalvik/libdex/
H A DDexClass.cpp56 * The lastIndex value should be set to 0 before the first field in
64 DexField* pField, u4* lastIndex) {
69 dexReadClassDataField(pData, pField, lastIndex);
77 * The lastIndex value should be set to 0 before the first method in
85 DexMethod* pMethod, u4* lastIndex) {
90 dexReadClassDataMethod(pData, pMethod, lastIndex);
106 u4 lastIndex; local
162 lastIndex = 0;
165 &result->staticFields[i], &lastIndex);
168 lastIndex
63 dexReadAndVerifyClassDataField(const u1** pData, const u1* pLimit, DexField* pField, u4* lastIndex) argument
84 dexReadAndVerifyClassDataMethod(const u1** pData, const u1* pLimit, DexMethod* pMethod, u4* lastIndex) argument
[all...]
H A DDexClass.h69 * The lastIndex value should be set to 0 before the first field in
77 DexField* pField, u4* lastIndex);
83 * The lastIndex value should be set to 0 before the first method in
91 DexMethod* pMethod, u4* lastIndex);
132 * The lastIndex value should be set to 0 before the first field in
137 u4* lastIndex) {
138 u4 index = *lastIndex + readUnsignedLeb128(pData);
142 *lastIndex = index;
148 * The lastIndex value should be set to 0 before the first method in
153 u4* lastIndex) {
136 dexReadClassDataField(const u1** pData, DexField* pField, u4* lastIndex) argument
152 dexReadClassDataMethod(const u1** pData, DexMethod* pMethod, u4* lastIndex) argument
[all...]

Completed in 169 milliseconds