Searched defs:new_array (Results 1 - 9 of 9) sorted by relevance

/art/test/573-checker-checkcast-regression/src/
H A DMain.java28 // converts `new_array` to an `Object[]`), so as to produce code
42 static public int test(Object new_array, int index1, int index2) { argument
43 Object[] objectArray = (Object[]) new_array;
/art/runtime/native/
H A Djava_lang_reflect_Array.cc44 mirror::Array* new_array = mirror::Array::CreateMultiArray(soa.Self(), local
47 return soa.AddLocalReference<jobject>(new_array);
66 ObjPtr<mirror::Array> new_array = mirror::ObjectArray<mirror::Object*>::Alloc( local
71 return soa.AddLocalReference<jobject>(new_array);
/art/runtime/mirror/
H A Darray.cc50 Handle<Array> new_array(
55 if (UNLIKELY(new_array == nullptr)) {
71 new_array->AsObjectArray<Array>()->Set<false, false>(i, sub_array);
74 return new_array.Get();
114 ObjPtr<Array> new_array = RecursiveCreateMultiArray(self, array_class, 0, dimensions); local
115 if (UNLIKELY(new_array == nullptr)) {
118 return new_array.Ptr();
140 ObjPtr<Array> new_array = Alloc<true>(self, GetClass(), new_length, component_shift, allocator_type); local
141 if (LIKELY(new_array != nullptr)) {
142 memcpy(new_array
[all...]
H A Dobject_array-inl.h357 ObjectArray<T>* new_array = Alloc(self, GetClass(), new_length, allocator_type); local
358 if (LIKELY(new_array != nullptr)) {
359 new_array->AssignableMemcpy(0, h_this.Get(), 0, std::min(h_this->GetLength(), new_length));
361 return new_array;
/art/compiler/optimizing/
H A Dbounds_check_elimination_test.cc600 HInstruction* new_array = new (allocator) HNewArray( local
604 block->AddInstruction(new_array);
633 HNullCheck* null_check = new (allocator) HNullCheck(new_array, 0);
H A Dinduction_var_range_test.cc706 HInstruction* new_array = new (&allocator_) HNewArray(x_, x_, 0); local
707 entry_block_->AddInstruction(new_array);
708 HInstruction* array_length = new (&allocator_) HArrayLength(new_array, 0);
/art/runtime/interpreter/
H A Dinterpreter_common.cc1152 ObjPtr<mirror::Object> new_array = mirror::Array::Alloc<true>( local
1158 if (UNLIKELY(new_array == nullptr)) {
1172 new_array->AsIntArray()->SetWithoutChecks<transaction_active>(
1175 new_array->AsObjectArray<mirror::Object>()->SetWithoutChecks<transaction_active>(
1180 result->SetL(new_array);
H A Dunstarted_runtime.cc1784 mirror::Array* new_array = mirror::ObjectArray<mirror::Object*>::Alloc( local
1786 result->SetL(new_array);
/art/runtime/
H A Ddebugger.cc1334 mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length, local
1337 if (new_array == nullptr) {
1344 *new_array_id = gRegistry->Add(new_array);

Completed in 414 milliseconds