Lines Matching refs:Array
51 #include "mirror/array-alloc-inl.h"
121 ObjPtr<mirror::Array> result = mirror::Array::Alloc<true>(soa.Self(),
148 ObjPtr<mirror::Array> result = mirror::Array::Alloc<true, true>(
162 ObjPtr<mirror::Array> array = soa.Decode<mirror::Array>(javaArray);
163 if (!array->IsArrayInstance()) {
164 ThrowIllegalArgumentException("not an array");
167 if (Runtime::Current()->GetHeap()->IsMovableObject(array)) {
168 ThrowRuntimeException("Trying to get address of movable array object");
171 return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize(), 0));