Lines Matching refs:idx
506 int idx = 0;
517 ALOGI(" %2d: type=%s %s %p", idx, kindStr, cpe->fileName, cpe->ptr);
525 idx++;
660 int idx, count;
696 idx = 0;
718 cpe[idx].kind = kCpeLastEntry;
719 cpe[idx].fileName = NULL;
720 cpe[idx].ptr = NULL;
727 cpe[idx] = tmp;
728 idx++;
734 assert(idx <= count);
735 if (idx == 0 && !gDvm.optimizing) {
745 LOGVV(" (filled %d of %d slots)", idx, count);
748 cpe[idx].kind = kCpeLastEntry;
749 cpe[idx].fileName = NULL;
750 cpe[idx].ptr = NULL;
884 StringObject* dvmGetBootPathResource(const char* name, int idx)
891 name, idx, cpe[idx].fileName);
893 /* we could use direct array index, but I don't entirely trust "idx" */
894 while (idx-- && cpe->kind != kCpeLastEntry)
2545 /* Copy u4 DEX idx values out of the ClassObject* array
3054 int idx = superIfCount;
3070 clazz->iftable[idx++].clazz = interf;
3087 for (k = 0; k < idx; k++)
3091 if (k == idx)
3092 clazz->iftable[idx++].clazz = cand;
3096 assert(idx <= ifCount);
3104 if (idx != ifCount) {
3105 int newIfCount = idx;
3115 ifCount = idx;