Searched refs:jerryx_property_entry (Results 1 – 4 of 4) sorted by relevance
/third_party/jerryscript/jerry-ext/include/jerryscript-ext/ |
D | handler.h | 58 } jerryx_property_entry; typedef 60 #define JERRYX_PROPERTY_NUMBER(NAME, NUMBER) (jerryx_property_entry) { NAME, jerry_create_number (N… 62 (jerryx_property_entry) { NAME, jerry_create_string_from_utf8 ((const jerry_char_t *) STR) } 64 …(jerryx_property_entry) { NAME, jerry_create_string_sz_from_utf8 ((const jerry_char_t *) STR, SIZE… 65 #define JERRYX_PROPERTY_BOOLEAN(NAME, VALUE) (jerryx_property_entry) { NAME, jerry_create_boolean (… 66 #define JERRYX_PROPERTY_FUNCTION(NAME, FUNC) (jerryx_property_entry) { NAME, jerry_create_external_… 67 #define JERRYX_PROPERTY_UNDEFINED(NAME) (jerryx_property_entry) { NAME, jerry_create_undefined() } 68 #define JERRYX_PROPERTY_LIST_END() (jerryx_property_entry) { NULL, 0 } 81 const jerryx_property_entry entries[]); 84 jerryx_release_property_entry (const jerryx_property_entry entries[],
|
/third_party/jerryscript/jerry-ext/handler/ |
D | handler-register.c | 62 const jerryx_property_entry entries[]) /**< array of method entries */ in jerryx_set_properties() 74 const jerryx_property_entry *entry = &entries[idx]; in jerryx_set_properties() 105 jerryx_release_property_entry (const jerryx_property_entry entries[], /**< list of property entries… in jerryx_release_property_entry()
|
/third_party/jerryscript/docs/ |
D | 10.EXT-REFERENCE-HANDLER.md | 176 ## jerryx_property_entry section in Utility to register multiple properties in bulk 251 const jerryx_property_entry entries[]); 285 jerryx_property_entry methods[] = 354 jerryx_property_entry methods[] = 386 - [jerryx_property_entry](#jerryx_property_entry) 394 Release all `jerry_value_t` in a `jerryx_property_entry` array based on a previous [jerryx_set_prop… 404 jerryx_release_property_entry (const jerryx_property_entry entries[], 408 - `entires` - array of [jerryx_property_entry](#jerryx_property_entry).
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-ext-method-register.c | 71 jerryx_property_entry methods[] = in test_simple_registration() 203 jerryx_property_entry methods[] = in test_error_single_function() 235 jerryx_property_entry methods[] = in test_error_multiple_functions()
|