Home | History | Annotate | Download | only in mirror

Lines Matching refs:array_class

153 inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count,
156 DCHECK(array_class != nullptr);
157 DCHECK(array_class->IsArrayClass());
158 DCHECK_EQ(array_class->GetComponentSizeShift(), component_size_shift);
159 DCHECK_EQ(array_class->GetComponentSize(), (1U << component_size_shift));
168 PrettyDescriptor(array_class).c_str(),
178 heap->AllocObjectWithAllocator<kIsInstrumented, true>(self, array_class, size,
185 heap->AllocObjectWithAllocator<kIsInstrumented, true>(self, array_class, size,
189 array_class = result->GetClass(); // In case the array class moved.
190 CHECK_EQ(array_class->GetComponentSize(), 1U << component_size_shift);