Lines Matching refs:Array
23 #include "array-alloc-inl.h"
24 #include "array-inl.h"
160 MutableHandle<Array> a = hs.NewHandle(
161 Array::Alloc<true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
166 a.Assign(Array::Alloc<true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
171 a.Assign(Array::Alloc<true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
181 MutableHandle<Array> a = hs.NewHandle(
182 Array::Alloc<true, true>(soa.Self(), c.Get(), 1, c->GetComponentSizeShift(), allocator_type));
188 Array::Alloc<true, true>(soa.Self(), c.Get(), 2, c->GetComponentSizeShift(), allocator_type));
194 Array::Alloc<true, true>(soa.Self(), c.Get(), 2, c->GetComponentSizeShift(), allocator_type));
200 Array::Alloc<true, true>(soa.Self(), c.Get(), 2, c->GetComponentSizeShift(), allocator_type));
326 MutableHandle<Array> multi = hs.NewHandle(Array::CreateMultiArray(soa.Self(), int_class, dims));
331 multi.Assign(Array::CreateMultiArray(soa.Self(), int_class, dims));
342 multi.Assign(Array::CreateMultiArray(soa.Self(), int_class, dims));
347 ObjPtr<Array> outer = multi->AsObjectArray<Array>()->Get(k);
563 // All array classes implement Cloneable and Serializable.
564 Handle<Object> array =
570 EXPECT_TRUE(array->InstanceOf(java_lang_Cloneable.Get()));
571 EXPECT_TRUE(array->InstanceOf(java_io_Serializable.Get()));