Lines Matching refs:array_length
11961 uint32_t array_length = 0; in SetFastElement() local
11965 CHECK(Handle<JSArray>::cast(object)->length()->ToArrayIndex(&array_length)); in SetFastElement()
11966 introduces_holes = index > array_length; in SetFastElement()
11967 if (index >= array_length) { in SetFastElement()
11969 array_length = index + 1; in SetFastElement()
12011 SetFastDoubleElementsCapacityAndLength(object, new_capacity, array_length); in SetFastElement()
12034 SetFastElementsCapacityAndLength(object, new_capacity, array_length, in SetFastElement()
12045 Handle<JSArray>::cast(object)->set_length(Smi::FromInt(array_length)); in SetFastElement()
12252 uint32_t array_length = 0; in SetFastDoubleElement() local
12254 Handle<JSArray>::cast(object)->length()->ToArrayIndex(&array_length)); in SetFastDoubleElement()
12255 if (index >= array_length) { in SetFastDoubleElement()