Lines Matching refs:Array
97 ObjPtr<mirror::Array> result = mirror::Array::Alloc<true>(soa.Self(),
124 ObjPtr<mirror::Array> result = mirror::Array::Alloc<true, true>(
138 ObjPtr<mirror::Array> array = soa.Decode<mirror::Array>(javaArray);
139 if (!array->IsArrayInstance()) {
140 ThrowIllegalArgumentException("not an array");
143 if (Runtime::Current()->GetHeap()->IsMovableObject(array)) {
144 ThrowRuntimeException("Trying to get address of movable array object");
147 return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize(), 0));