Searched refs:target_p (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-reflect.c | 109 ecma_object_t *target_p = ecma_get_object_from_value (arguments_list[0]); in ecma_builtin_reflect_dispatch_routine() local 122 ret_value = ecma_op_object_get_with_receiver (target_p, name_str_p, receiver); in ecma_builtin_reflect_dispatch_routine() 128 ret_value = ecma_op_object_has_property (target_p, name_str_p); in ecma_builtin_reflect_dispatch_routine() 134 ret_value = ecma_op_object_delete (target_p, name_str_p, false); in ecma_builtin_reflect_dispatch_routine() 149 …ret_value = ecma_op_object_put_with_receiver (target_p, name_str_p, arguments_list[2], receiver, f… in ecma_builtin_reflect_dispatch_routine() 166 ecma_object_t *target_p = ecma_get_object_from_value (arguments_list[0]); in ecma_builtin_reflect_dispatch_routine() local 169 return ecma_builtin_helper_object_get_properties (target_p, ECMA_LIST_SYMBOLS); in ecma_builtin_reflect_dispatch_routine() 180 ecma_object_t *target_p = ecma_get_object_from_value (arguments_list[0]); in ecma_builtin_reflect_dispatch_routine() local 183 ecma_object_t *new_target_p = target_p; in ecma_builtin_reflect_dispatch_routine() 209 ecma_value_t ret_value = ecma_op_function_construct (target_p, in ecma_builtin_reflect_dispatch_routine()
|
D | ecma-builtin-object.c | 956 ecma_builtin_object_object_assign (ecma_object_t *target_p, /**< target object */ in ecma_builtin_object_object_assign() argument 1031 ecma_value_t status = ecma_op_object_put (target_p, property_name_p, prop_value, true); in ecma_builtin_object_object_assign() 1052 ecma_ref_object (target_p); in ecma_builtin_object_object_assign() 1053 return ecma_make_object_value (target_p); in ecma_builtin_object_object_assign()
|
/third_party/jerryscript/jerry-ext/arg/ |
D | arg-transform-functions.c | 268 jerry_char_t *target_p = (jerry_char_t *) c_arg_p->dest; in jerryx_arg_string_to_buffer_common_routine() local 276 target_p, in jerryx_arg_string_to_buffer_common_routine() 283 target_p, in jerryx_arg_string_to_buffer_common_routine() 294 target_p[size] = '\0'; in jerryx_arg_string_to_buffer_common_routine()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-objects.h | 70 ecma_value_t ecma_op_object_is_prototype_of (ecma_object_t *base_p, ecma_object_t *target_p);
|
D | ecma-objects.c | 2001 ecma_object_t *target_p) /**< target object */ in ecma_op_object_is_prototype_of() argument 2007 if (ECMA_OBJECT_IS_PROXY (target_p)) in ecma_op_object_is_prototype_of() 2009 ecma_value_t target_proto = ecma_proxy_object_get_prototype_of (target_p); in ecma_op_object_is_prototype_of() 2020 target_cp = ecma_op_ordinary_object_get_prototype_of (target_p); in ecma_op_object_is_prototype_of() 2030 target_p = ECMA_GET_NON_NULL_POINTER (ecma_object_t, target_cp); in ecma_op_object_is_prototype_of() 2032 if (target_p == base_p) in ecma_op_object_is_prototype_of()
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | flow.c | 320 struct basic_block **target_p, int bb_true) in simplify_branch_branch() argument 322 struct basic_block *target = *target_p, *final; in simplify_branch_branch() 343 return rewrite_branch(bb, target_p, target, final); in simplify_branch_branch()
|