Searched refs:obj_value (Results 1 – 9 of 9) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-conversion.h | 59 ecma_value_t ecma_op_to_property_descriptor (ecma_value_t obj_value, ecma_property_descriptor_t *ou…
|
D | ecma-objects-general.c | 236 ecma_value_t obj_value = ecma_make_object_value (obj_p); in ecma_op_general_object_default_value() local 238 ecma_value_t exotic_to_prim = ecma_op_get_method_by_symbol_id (obj_value, in ecma_op_general_object_default_value() 252 obj_value, in ecma_op_general_object_default_value()
|
D | ecma-conversion.c | 662 ecma_op_to_property_descriptor (ecma_value_t obj_value, /**< object value */ in ecma_op_to_property_descriptor() argument 670 if (!ecma_is_value_object (obj_value)) in ecma_op_to_property_descriptor() 676 ecma_object_t *obj_p = ecma_get_object_from_value (obj_value); in ecma_op_to_property_descriptor()
|
D | ecma-objects.c | 983 ecma_value_t obj_value = ecma_op_to_object (value); in ecma_op_get_method() local 985 if (ECMA_IS_VALUE_ERROR (obj_value)) in ecma_op_get_method() 987 return obj_value; in ecma_op_get_method() 990 ecma_object_t *obj_p = ecma_get_object_from_value (obj_value); in ecma_op_get_method()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
D | ecma-builtin-typedarray-prototype.c | 1089 ecma_value_t obj_value = ecma_op_to_object (this_arg); in ecma_builtin_typedarray_prototype_join() local 1091 if (ECMA_IS_VALUE_ERROR (obj_value)) in ecma_builtin_typedarray_prototype_join() 1093 return obj_value; in ecma_builtin_typedarray_prototype_join() 1095 ecma_object_t *obj_p = ecma_get_object_from_value (obj_value); in ecma_builtin_typedarray_prototype_join() 1102 ecma_free_value (obj_value); in ecma_builtin_typedarray_prototype_join() 1111 ecma_free_value (obj_value); in ecma_builtin_typedarray_prototype_join() 1124 ecma_free_value (obj_value); in ecma_builtin_typedarray_prototype_join() 1176 ecma_free_value (obj_value); in ecma_builtin_typedarray_prototype_join()
|
/third_party/gstreamer/gstreamer/plugins/tracers/ |
D | gstleaks.c | 645 GValue obj_value = G_VALUE_INIT; in process_leak() local 648 g_value_init (&obj_value, leak->type); in process_leak() 650 g_value_take_boxed (&obj_value, leak->obj); in process_leak() 652 g_value_take_object (&obj_value, leak->obj); in process_leak() 654 gst_structure_take_value (s, "object", &obj_value); in process_leak()
|
/third_party/jerryscript/jerry-core/vm/ |
D | opcodes.c | 216 ecma_value_t obj_value = ecma_op_to_object (object); in vm_op_delete_prop() local 218 JERRY_ASSERT (!ECMA_IS_VALUE_ERROR (obj_value)); in vm_op_delete_prop() 219 JERRY_ASSERT (ecma_is_value_object (obj_value)); in vm_op_delete_prop() 220 ecma_object_t *obj_p = ecma_get_object_from_value (obj_value); in vm_op_delete_prop()
|
/third_party/alsa-utils/topology/ |
D | pre-process-object.c | 380 const char *attr_name, *obj_value; in tplg_object_is_attribute_valid() local 400 if (snd_config_get_string(obj_attr, &obj_value) < 0) in tplg_object_is_attribute_valid() 402 if (!tplg_is_attribute_valid_value(valid, obj_value)) { in tplg_object_is_attribute_valid()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-json.c | 1004 ecma_value_t obj_value = ecma_make_object_value (obj_p); in ecma_builtin_json_serialize_array() local 1005 ecma_value_t is_array = ecma_is_value_array (obj_value); in ecma_builtin_json_serialize_array()
|