Lines Matching refs:name
28 jerryx_handler_register_global (const jerry_char_t *name_p, /**< name of the function */
47 * The properties are an array of (name, property value) pairs and
52 * - The property name must be a zero terminated UTF-8 string.
53 * - There should be no '\0' (NULL) character in the name excluding the string terminator.
72 for (; (entries[idx].name != NULL); idx++)
76 jerry_value_t prop_name = jerry_create_string_from_utf8 ((const jerry_char_t *) entry->name);
113 for (uint32_t idx = register_result.registered; entries[idx].name != NULL; idx++)
120 * Set a property to a specified value with a given name.
124 * - The property name must be a zero terminated UTF-8 string.
125 * - There should be no '\0' (NULL) character in the name excluding the string terminator.
133 const char *name, /**< property name */
136 jerry_value_t property_name_val = jerry_create_string_from_utf8 ((const jerry_char_t *) name);
149 * - The property name must be a zero terminated UTF-8 string.
150 * - There should be no '\0' (NULL) character in the name excluding the string terminator.
157 const char *name) /**< property name */
159 jerry_value_t prop_name = jerry_create_string_from_utf8 ((const jerry_char_t *) name);
171 * - The property name must be a zero terminated UTF-8 string.
172 * - There should be no '\0' (NULL) character in the name excluding the string terminator.
179 const char *name) /**< property name */
183 jerry_value_t prop_name = jerry_create_string_from_utf8 ((const jerry_char_t *) name);