Home
last modified time | relevance | path

Searched refs:this_obj_p (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-intrinsic.c75 ecma_object_t *this_obj_p = ecma_get_object_from_value (this_obj); in ecma_builtin_intrinsic_array_prototype_values() local
77 ecma_value_t ret_value = ecma_op_create_array_iterator (this_obj_p, ECMA_ITERATOR_VALUES); in ecma_builtin_intrinsic_array_prototype_values()
79 ecma_deref_object (this_obj_p); in ecma_builtin_intrinsic_array_prototype_values()
Decma-builtin-regexp-prototype.c384 ecma_object_t *this_obj_p = ecma_get_object_from_value (this_arg); in ecma_builtin_regexp_prototype_compile() local
385 ecma_extended_object_t *regexp_obj_p = (ecma_extended_object_t *) this_obj_p; in ecma_builtin_regexp_prototype_compile()
389 ecma_value_t status = ecma_builtin_helper_def_prop (this_obj_p, in ecma_builtin_regexp_prototype_compile()
407 ecma_ref_object (this_obj_p); in ecma_builtin_regexp_prototype_compile()
411 return ecma_op_create_regexp_from_bytecode (this_obj_p, bc_p); in ecma_builtin_regexp_prototype_compile()
414 ecma_value_t ret_value = ecma_op_create_regexp_from_pattern (this_obj_p, pattern_arg, flags_arg); in ecma_builtin_regexp_prototype_compile()
418 ecma_ref_object (this_obj_p); in ecma_builtin_regexp_prototype_compile()
Decma-builtin-promise.c502 ecma_object_t *this_obj_p = ecma_get_object_from_value (this_arg); in ecma_builtin_promise_race_or_all() local
503 ecma_value_t species_symbol = ecma_op_object_get_by_magic_id (this_obj_p, in ecma_builtin_promise_race_or_all()
519 ecma_ref_object (this_obj_p); in ecma_builtin_promise_race_or_all()
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-library-registry/
Dwrap_tools.h39 jsmbed_wrap_register_class_function (jerry_value_t this_obj_p,
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c2703 ecma_object_t *this_obj_p = ecma_get_object_from_value (this_arg); in ecma_regexp_replace_helper() local
2730 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_GLOBAL); in ecma_regexp_replace_helper()
2748 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_UNICODE); in ecma_regexp_replace_helper()
2758 result = ecma_op_object_put (this_obj_p, in ecma_regexp_replace_helper()
2771 ecma_extended_object_t *re_obj_p = (ecma_extended_object_t *) this_obj_p; in ecma_regexp_replace_helper()
2782 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_EXEC); in ecma_regexp_replace_helper()
2793 if (ecma_object_class_is (this_obj_p, LIT_MAGIC_STRING_REGEXP_UL) in ecma_regexp_replace_helper()
2796 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_STICKY); in ecma_regexp_replace_helper()
2808 … ecma_value_t lastindex_value = ecma_op_object_get_own_data_prop (this_obj_p, lastindex_str_p); in ecma_regexp_replace_helper()
2822 result = ecma_op_object_put (this_obj_p, in ecma_regexp_replace_helper()
[all …]
/third_party/jerryscript/jerry-core/vm/
Dvm.c512 ecma_object_t *this_obj_p = ecma_get_object_from_value (*this_value_p); in vm_get_implicit_this_value() local
514 if (ecma_is_lexical_environment (this_obj_p)) in vm_get_implicit_this_value()
516 ecma_value_t completion_value = ecma_op_implicit_this_value (this_obj_p); in vm_get_implicit_this_value()