Lines Matching refs:component_count
243 int32_t component_count, in CheckArrayAlloc() argument
246 if (UNLIKELY(component_count < 0)) { in CheckArrayAlloc()
247 ThrowNegativeArraySizeException(component_count); in CheckArrayAlloc()
280 int32_t component_count, in AllocArrayFromCode() argument
286 CheckArrayAlloc<kAccessCheck>(type_idx, component_count, method, &slow_path); in AllocArrayFromCode()
295 component_count, in AllocArrayFromCode()
299 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count, in AllocArrayFromCode()
306 int32_t component_count, in AllocArrayFromCodeResolved() argument
310 if (UNLIKELY(component_count < 0)) { in AllocArrayFromCodeResolved()
311 ThrowNegativeArraySizeException(component_count); in AllocArrayFromCodeResolved()
316 return mirror::Array::Alloc<kInstrumented>(self, klass, component_count, in AllocArrayFromCodeResolved()