Home
last modified time | relevance | path

Searched refs:string_buffer_p (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-string-prototype.c853 const lit_utf8_byte_t *string_buffer_p = ecma_string_get_chars (string_p, in ecma_builtin_string_prototype_object_split() local
866 const lit_utf8_byte_t *const string_end_p = string_buffer_p + string_size; in ecma_builtin_string_prototype_object_split()
869 const lit_utf8_byte_t *current_p = string_buffer_p; in ecma_builtin_string_prototype_object_split()
870 const lit_utf8_byte_t *last_str_begin_p = string_buffer_p; in ecma_builtin_string_prototype_object_split()
911 jmem_heap_free_block ((void *) string_buffer_p, string_size); in ecma_builtin_string_prototype_object_split()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c2355 const lit_utf8_byte_t *string_buffer_p = ecma_string_get_chars (string_p, in ecma_regexp_split_helper()
2361 const lit_utf8_byte_t *current_str_p = string_buffer_p; in ecma_regexp_split_helper()
2362 const lit_utf8_byte_t *previous_str_p = string_buffer_p; in ecma_regexp_split_helper()
2363 const lit_utf8_byte_t *const string_end_p = string_buffer_p + string_size; in ecma_regexp_split_helper()
2368 string_buffer_p, in ecma_regexp_split_helper()
2369 string_buffer_p + string_size); in ecma_regexp_split_helper()
2477 jmem_heap_free_block ((void *) string_buffer_p, string_size); in ecma_regexp_split_helper()
/third_party/jerryscript/docs/
D02.API-REFERENCE.md2944 …jerry_char_t *string_buffer_p = (jerry_char_t *) malloc (sizeof (jerry_char_t) * (string_size + 1)…
2946 jerry_size_t copied_bytes = jerry_string_to_char_buffer (value, string_buffer_p, string_size);
2947 string_buffer_p[copied_bytes] = '\0';
2953 printf ("Test string: %s\n", string_buffer_p);
2954 free (string_buffer_p);