Searched defs:object_array (Results 1 - 3 of 3) sorted by relevance

/art/runtime/mirror/
H A Dthrowable.cc24 #include "object_array.h"
25 #include "object_array-inl.h"
95 mirror::ObjectArray<mirror::Object>* object_array = local
99 DCHECK_GT(object_array->GetLength(), 0);
100 mirror::Object* methods_and_dex_pcs = object_array->Get(0);
/art/runtime/native/
H A Djava_lang_Class.cc32 #include "mirror/object_array-inl.h"
132 auto object_array = hs.NewHandle(mirror::ObjectArray<mirror::Field>::Alloc( local
134 if (object_array.Get() == nullptr) {
147 object_array->SetWithoutChecks<false>(array_idx++, reflect_field);
159 object_array->SetWithoutChecks<false>(array_idx++, reflect_field);
163 return object_array.Get();
/art/runtime/gc/
H A Dheap.cc66 #include "mirror/object_array-inl.h"
3167 mirror::ObjectArray<mirror::Object>* object_array = variable
3169 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
3170 if (object_array->Get(i) == ref) {

Completed in 194 milliseconds