Lines Matching full:actual_count
4562 size_t actual_count = klass->GetSuperClass()->GetVTableLength();
4563 CHECK_LE(actual_count, max_count);
4593 for (; j < actual_count; ++j) {
4615 if (j == actual_count) {
4617 vtable->Set<false>(actual_count, local_method);
4618 local_method->SetMethodIndex(actual_count);
4619 actual_count += 1;
4622 if (!IsUint(16, actual_count)) {
4623 ThrowClassFormatError(klass.Get(), "Too many methods defined on class: %zd", actual_count);
4627 CHECK_LE(actual_count, max_count);
4628 if (actual_count < max_count) {
4629 vtable.Assign(vtable->CopyOf(self, actual_count));