Home
last modified time | relevance | path

Searched refs:target_length (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/objects/
Djs-function.cc242 Handle<Object> target_length; in CopyNameAndLength() local
243 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, target_length, in CopyNameAndLength()
246 if (target_length->IsNumber()) { in CopyNameAndLength()
248 0.0, DoubleToInteger(target_length->Number()) - arg_count)); in CopyNameAndLength()
356 int target_length = 0; in GetLength() local
358 isolate, target_length, JSWrappedFunction::GetLength(isolate, target), in GetLength()
360 int length = std::max(0, target_length - nof_bound_arguments); in GetLength()
367 int target_length = target->length(); in GetLength() local
369 int length = std::max(0, target_length - nof_bound_arguments); in GetLength()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-function-prototype.c348 bound_func_p->target_length = len; in ecma_builtin_function_prototype_object_bind()
Decma-builtin-array-prototype.c913 uint32_t target_length = ext_to_obj_p->u.array.length; in ecma_builtin_array_prototype_object_slice() local
915 if (copied_length == target_length) in ecma_builtin_array_prototype_object_slice()
919 else if (copied_length > target_length) in ecma_builtin_array_prototype_object_slice()
/third_party/node/src/
Dnode_buffer.cc644 if (target_start >= target_length || source_start >= source_end) in Copy()
651 if (source_end - source_start > target_length - target_start) in Copy()
652 source_end = source_start + target_length - target_start; in Copy()
655 std::min(source_end - source_start, target_length - target_start), in Copy()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h967 ecma_integer_value_t target_length; /**< length of target function */ member
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c1529 length = bound_func_p->target_length - (args_length - 1); in ecma_op_bound_function_try_to_lazy_instantiate_property()