Lines Matching defs:length

447              size_t resource_name_length, /**< length of resource name */
521 size_t resource_name_length, /**< length of resource name */
645 size_t source_size, /**< length of source code */
1812 jerry_size_t pattern_size, /**< length of the pattern */
1849 * Get length of an array object
1854 * @return length of the given array
1919 * Get length of Jerry string
1940 * Get UTF-8 string length from Jerry string
2531 container_p->u.class_prop.u.length = 0;
3579 * The array length is zero if the backtrace is not available.
3680 * Creates an ArrayBuffer object with the given length (size).
3683 * * the length is specified in bytes.
3766 jerry_length_t length = ecma_arraybuffer_get_length (buffer_p);
3768 if (offset >= length)
3773 jerry_length_t copy_count = JERRY_MIN (length - offset, buf_size);
3815 jerry_length_t length = ecma_arraybuffer_get_length (buffer_p);
3817 if (offset >= length)
3822 jerry_length_t copy_count = JERRY_MIN (length - offset, buf_size);
3842 * Get the length (size) of the ArrayBuffer in bytes.
3847 * @return the length of the ArrayBuffer in bytes.
4052 *byte_length = dataview_p->header.u.class_prop.u.length;
4160 * Create a TypedArray object with a given type and length.
4165 * * byteLength property will be a multiple of the length parameter (based on the type).
4171 jerry_length_t length) /**< element count of the new TypedArray */
4187 ecma_value_t array_value = ecma_typedarray_create_object_with_length (length,
4198 JERRY_UNUSED (length);
4208 * * this is the 'new %TypedArray%(arraybuffer, byteOffset, length)' equivalent call.
4216 jerry_length_t length) /**< number of elements to use from ArrayBuffer */
4245 ecma_make_uint32_value (length)
4257 JERRY_UNUSED (length);
4329 * @return length of the TypedArray.