Home
last modified time | relevance | path

Searched refs:jerry_create_string_from_utf8 (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-ext/handler/
Dhandler-register.c76 jerry_value_t prop_name = jerry_create_string_from_utf8 ((const jerry_char_t *) entry->name); in jerryx_set_properties()
136 jerry_value_t property_name_val = jerry_create_string_from_utf8 ((const jerry_char_t *) name); in jerryx_set_property_str()
159 jerry_value_t prop_name = jerry_create_string_from_utf8 ((const jerry_char_t *) name); in jerryx_get_property_str()
183 jerry_value_t prop_name = jerry_create_string_from_utf8 ((const jerry_char_t *) name); in jerryx_has_property_str()
/third_party/jerryscript/tests/unit-core/
Dtest-api-strings.cpp83 args[0] = jerry_create_string_from_utf8 ((jerry_char_t *) "\x73\x74\x72\x3a \xf0\x90\x90\x80");
103 args[0] = jerry_create_string_from_utf8 ((jerry_char_t *) "\x73\x74\x72\x3a \xf0\x90\x90\x80");
126 …args[0] = jerry_create_string_from_utf8 ((jerry_char_t *) "\x73\x74\x72\x3a \xf0\x9d\x94\xa3 \xf0\…
196 …args[0] = jerry_create_string_from_utf8 ((jerry_char_t *) "\x70\x72\x69\x63\x65\x3a \x31\x30\xe2\x…
Dtest-has-property.cpp64 jerry_value_t prop_name = jerry_create_string_from_utf8 ((jerry_char_t *) "something");
/third_party/jerryscript/jerry-ext/include/jerryscript-ext/
Dhandler.h62 (jerryx_property_entry) { NAME, jerry_create_string_from_utf8 ((const jerry_char_t *) STR) }
/third_party/jerryscript/docs/
D16.MIGRATION-GUIDE.md691 - [`jerry_create_string_from_utf8`](02.API-REFERENCE.md#jerry_create_string_from_utf8)
D02.API-REFERENCE.md2799 - [jerry_create_string_from_utf8](#jerry_create_string_from_utf8)
2875 jerry_value_t string = jerry_create_string_from_utf8 (char_array);
2887 - [jerry_create_string_from_utf8](#jerry_create_string_from_utf8)
3019 - [jerry_create_string_from_utf8](#jerry_create_string_from_utf8)
3137 - [jerry_create_string_from_utf8](#jerry_create_string_from_utf8)
4479 ## jerry_create_string_from_utf8 section in Create API values
4494 jerry_create_string_from_utf8 (const jerry_char_t *str_p);
4507 jerry_value_t string_value = jerry_create_string_from_utf8 (char_array);
4564 - [jerry_create_string_from_utf8](#jerry_create_string_from_utf8)
6930 - [jerry_create_string_from_utf8](#jerry_create_string_from_utf8)
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h511 jerry_value_t jerry_create_string_from_utf8 (const jerry_char_t *str_p);
/third_party/jerryscript/jerry-core/api/
Djerry.c1708 jerry_create_string_from_utf8 (const jerry_char_t *str_p) /**< pointer to string */ in jerry_create_string_from_utf8() function