Lines Matching defs:length
224 // Setup the "length" property based on the "length" of the {target}.
225 // If the targets length is the default JSFunction accessor, we can keep the
228 // underlying internal length.
237 Handle<Object> length(Smi::zero(), isolate);
247 length = isolate->factory()->NewNumber(std::max(
256 &it, length, it.property_attributes()),
339 int nof_bound_arguments = function->bound_arguments().length();
344 // arguments of a function is strictly limited by the max length of an
346 int length = function->bound_arguments().length();
347 if (V8_LIKELY(Smi::kMaxValue - nof_bound_arguments > length)) {
348 nof_bound_arguments += length;
360 int length = std::max(0, target_length - nof_bound_arguments);
361 return Just(length);
367 int target_length = target->length();
369 int length = std::max(0, target_length - nof_bound_arguments);
370 return Just(length);
415 return Just(Handle<JSFunction>::cast(target)->length());
594 CHECK_EQ(function->feedback_vector().length(),
601 function->closure_feedback_cell_array().length(),
1165 if (prefix->length() > 0) {