Lines Matching refs:j
265 int j; in gatherMethods() local
266 for (j = 0; j < clazz->iftableCount; j++) { in gatherMethods()
267 ClassObject* iclass = clazz->iftable[j].clazz; in gatherMethods()
297 int j; in gatherMethods() local
299 for (j = 0; j < clazz->virtualMethodCount; j++) { in gatherMethods()
300 allMethods[allCount++] = &clazz->virtualMethods[j]; in gatherMethods()
303 for (j = 0; j < clazz->iftableCount; j++) { in gatherMethods()
304 ClassObject* iclass = clazz->iftable[j].clazz; in gatherMethods()
378 int i, j; in copyWithoutDuplicates() local
408 for (j = 0; j < allCount; j++) { in copyWithoutDuplicates()
409 if (i == j) in copyWithoutDuplicates()
411 if (allMethods[j] == NULL) in copyWithoutDuplicates()
415 allMethods[j]) == 0) in copyWithoutDuplicates()
424 allMethods[j]->clazz->descriptor, allMethods[j]->name); in copyWithoutDuplicates()
426 if (!returnTypesAreCompatible(allMethods[i], allMethods[j])) in copyWithoutDuplicates()
453 for (j = 0; j < allCount; j++) { in copyWithoutDuplicates()
454 if (i == j) in copyWithoutDuplicates()
456 if (allMethods[j] == NULL) in copyWithoutDuplicates()
459 allMethods[j]) == 0) in copyWithoutDuplicates()
461 ALOGV("DEL %d %s.%s", j, in copyWithoutDuplicates()
462 allMethods[j]->clazz->descriptor, in copyWithoutDuplicates()
463 allMethods[j]->name); in copyWithoutDuplicates()
470 updateExceptionClassList(allMethods[j], in copyWithoutDuplicates()
474 allMethods[j] = NULL; in copyWithoutDuplicates()
581 for (size_t j = i + 1; j < len; j++) { in reduceExceptionClassList() local
582 if (classes[j] == NULL) in reduceExceptionClassList()
585 if (dvmInstanceof(classes[i], classes[j])) { in reduceExceptionClassList()
588 } else if (dvmInstanceof(classes[j], classes[i])) { in reduceExceptionClassList()
589 classes[j] = NULL; in reduceExceptionClassList()
670 size_t j; in updateExceptionClassList() local
671 for (j = 0; j < declLen; j++) { in updateExceptionClassList()
672 if (declSet[j] == NULL) in updateExceptionClassList()
675 if (mixSet[i] == declSet[j]) { in updateExceptionClassList()
678 } else if (dvmInstanceof(mixSet[i], declSet[j])) { in updateExceptionClassList()
681 } else if (dvmInstanceof(declSet[j], mixSet[i])) { in updateExceptionClassList()
683 mixSet[i] = declSet[j]; in updateExceptionClassList()
688 if (j == declLen) { in updateExceptionClassList()
831 value.j = dvmGetArgLong(args, srcIndex); in boxMethodArgs()