Home | History | Annotate | Download | only in runtime

Lines Matching full:actual_count

4611     size_t actual_count = super_vtable_length;
4619 vtable->SetElementPtrSize(actual_count, local_method, image_pointer_size_);
4620 local_method->SetMethodIndex(actual_count);
4621 ++actual_count;
4623 if (!IsUint<16>(actual_count)) {
4624 ThrowClassFormatError(klass.Get(), "Too many methods defined on class: %zd", actual_count);
4628 CHECK_LE(actual_count, max_count);
4629 if (actual_count < max_count) {
4630 vtable.Assign(down_cast<mirror::PointerArray*>(vtable->CopyOf(self, actual_count)));