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

/art/runtime/mirror/
H A Dthrowable.cc28 #include "object_array-inl.h"
29 #include "object_array.h"
101 ObjPtr<ObjectArray<Object>> object_array = stack_state->AsObjectArray<Object>(); local
104 DCHECK_GT(object_array->GetLength(), 0);
105 ObjPtr<Object> methods_and_dex_pcs = object_array->Get(0);
/art/runtime/native/
H A Djava_lang_Class.cc38 #include "mirror/object_array-inl.h"
283 auto object_array = hs.NewHandle(mirror::ObjectArray<mirror::Field>::Alloc( local
285 if (object_array == nullptr) {
300 object_array->SetWithoutChecks<false>(array_idx++, reflect_field);
314 object_array->SetWithoutChecks<false>(array_idx++, reflect_field);
318 return object_array.Get();
/art/runtime/gc/
H A Dheap.cc81 #include "mirror/object_array-inl.h"
3061 mirror::ObjectArray<mirror::Object>* object_array = variable
3063 for (int32_t i = 0; i < object_array->GetLength(); ++i) {
3064 if (object_array->Get(i) == ref) {

Completed in 204 milliseconds