Searched defs:method_array (Results 1 - 2 of 2) sorted by path

/art/runtime/
H A Dclass_linker.cc5179 mirror::ObjectArray<mirror::ArtMethod>* method_array = if_table->GetMethodArray(i); local
5181 mirror::ArtMethod* method = method_array->GetWithoutChecks(j);
5203 Handle<mirror::ObjectArray<mirror::ArtMethod>> method_array;
5210 method_array = hs.NewHandle(if_table->GetMethodArray(i)->Clone(self)->
5216 method_array = hs.NewHandle(AllocArtMethodArray(self, num_methods));
5221 if (UNLIKELY(method_array.Get() == nullptr)) {
5225 iftable->SetMethodArray(i, method_array.Get());
5258 method_array->SetWithoutChecks<false>(j, vtable_method);
5299 method_array->SetWithoutChecks<false>(j, miranda_method);
/art/runtime/mirror/
H A Diftable.h38 ObjectArray<ArtMethod>* method_array = local
40 DCHECK(method_array != NULL);
41 return method_array;
45 ObjectArray<ArtMethod>* method_array = local
47 if (method_array == NULL) {
50 return method_array->GetLength();

Completed in 46 milliseconds