Home | History | Annotate | Download | only in native

Lines Matching refs:Array

88   mirror::Array* result = mirror::Array::Alloc<true>(soa.Self(), array_class, length,
113 mirror::Array* result = mirror::Array::Alloc<true, true>(soa.Self(), array_class, length,
124 mirror::Array* array = soa.Decode<mirror::Array*>(javaArray);
125 if (!array->IsArrayInstance()) {
126 ThrowIllegalArgumentException("not an array");
129 if (Runtime::Current()->GetHeap()->IsMovableObject(array)) {
130 ThrowRuntimeException("Trying to get address of movable array object");
133 return reinterpret_cast<uintptr_t>(array->GetRawData(array->GetClass()->GetComponentSize(), 0));