Lines Matching defs:value
288 jerry_debugger_get_variable_type (ecma_value_t value) /**< input ecma value */
292 if (ecma_is_value_undefined (value))
296 else if (ecma_is_value_null (value))
300 else if (ecma_is_value_boolean (value))
304 else if (ecma_is_value_number (value))
308 else if (ecma_is_value_string (value))
314 JERRY_ASSERT (ecma_is_value_object (value));
316 if (ecma_get_object_type (ecma_get_object_from_value (value)) == ECMA_OBJECT_TYPE_ARRAY)
322 ret_value = ecma_op_is_callable (value) ? JERRY_DEBUGGER_VALUE_FUNCTION : JERRY_DEBUGGER_VALUE_OBJECT;
334 * It will copies the given scope values type, length and value into the outgoing message string.
342 ecma_string_t *value_str, /**< property name or value string */
516 uint8_t variable_type = jerry_debugger_get_variable_type (prop_value_p.value);
518 ecma_string_t *str_p = ecma_op_to_string (prop_value_p.value);
1142 * If the function returns with true, the value of
1284 uint16_t uint16_value; /**< a 16-bit value */
1285 uint8_t uint8_value[2]; /**< lower and upper byte of a 16-bit value */
1547 if (!ecma_is_value_string (prop_value_p->value))
1554 ecma_stringbuilder_append (&builder, ecma_get_string_from_value (prop_value_p->value));