Home
last modified time | relevance | path

Searched refs:ecma_op_object_get_by_magic_id (Results 1 – 25 of 25) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-promise.c65 ecma_value_t reject = ecma_op_object_get_by_magic_id (ecma_get_object_from_value (capability), in ecma_builtin_promise_reject_abrupt()
82 return ecma_op_object_get_by_magic_id (ecma_get_object_from_value (capability), in ecma_builtin_promise_reject_abrupt()
155 …return ecma_op_object_get_by_magic_id (capability_obj_p, LIT_INTERNAL_MAGIC_STRING_PROMISE_PROPERT… in ecma_builtin_promise_perform_race()
181 …args[0] = ecma_op_object_get_by_magic_id (capability_obj_p, LIT_INTERNAL_MAGIC_STRING_PROMISE_PROP… in ecma_builtin_promise_perform_race()
182 …args[1] = ecma_op_object_get_by_magic_id (capability_obj_p, LIT_INTERNAL_MAGIC_STRING_PROMISE_PROP… in ecma_builtin_promise_perform_race()
296 ecma_value_t resolve = ecma_op_object_get_by_magic_id (ecma_get_object_from_value (capability), in ecma_builtin_promise_all_handler()
371 ecma_value_t resolve = ecma_op_object_get_by_magic_id (capability_obj_p, in ecma_builtin_promise_perform_all()
389 ret_value = ecma_op_object_get_by_magic_id (capability_obj_p, in ecma_builtin_promise_perform_all()
460 …args[1] = ecma_op_object_get_by_magic_id (capability_obj_p, LIT_INTERNAL_MAGIC_STRING_PROMISE_PROP… in ecma_builtin_promise_perform_all()
503 ecma_value_t species_symbol = ecma_op_object_get_by_magic_id (this_obj_p, in ecma_builtin_promise_race_or_all()
Decma-builtin-regexp.c90 …ecma_value_t pattern_constructor = ecma_op_object_get_by_magic_id (pattern_obj_p, LIT_MAGIC_STRING… in ecma_builtin_regexp_dispatch_helper()
124 pattern_value = ecma_op_object_get_by_magic_id (pattern_obj_p, LIT_MAGIC_STRING_SOURCE); in ecma_builtin_regexp_dispatch_helper()
133 flags_value = ecma_op_object_get_by_magic_id (pattern_obj_p, LIT_MAGIC_STRING_FLAGS); in ecma_builtin_regexp_dispatch_helper()
Decma-builtin-regexp-prototype.c118 ecma_value_t result = ecma_op_object_get_by_magic_id (object_p, flag_lit_ids[i]); in ecma_builtin_regexp_prototype_get_flags()
540 ecma_value_t result = ecma_op_object_get_by_magic_id (object_p, LIT_MAGIC_STRING_SOURCE); in ecma_builtin_regexp_prototype_to_string()
554 result = ecma_op_object_get_by_magic_id (object_p, LIT_MAGIC_STRING_FLAGS); in ecma_builtin_regexp_prototype_to_string()
Decma-builtin-error-prototype.c57 ecma_value_t prop_value = ecma_op_object_get_by_magic_id (obj_p, property_id); in ecma_builtin_error_prototype_object_to_string_helper()
Decma-builtin-object-prototype.c114 …ecma_value_t to_string_val = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_TO_STRING_UL); in ecma_builtin_object_prototype_object_to_locale_string()
Decma-builtin-string.c160 ecma_value_t raw = ecma_op_object_get_by_magic_id (cooked_obj_p, LIT_MAGIC_STRING_RAW); in ecma_builtin_string_object_raw()
Decma-builtin-date-prototype.c163 ecma_op_object_get_by_magic_id (value_obj_p, LIT_MAGIC_STRING_TO_ISO_STRING_UL), in ecma_builtin_date_prototype_to_json()
Decma-builtin-helpers.c232 …ecma_value_t to_locale_value = ecma_op_object_get_by_magic_id (index_obj_p, LIT_MAGIC_STRING_TO_LO… in ecma_builtin_helper_get_to_locale_string_at_index()
Decma-builtins.c859 value = ecma_op_object_get_by_magic_id (ecma_builtin_get (ECMA_BUILTIN_ID_INTRINSIC_OBJECT), in ecma_builtin_try_to_instantiate_property()
Decma-builtin-json.c1136 … ecma_value_t to_json = ecma_op_object_get_by_magic_id (value_obj_p, LIT_MAGIC_STRING_TO_JSON_UL); in ecma_builtin_json_serialize_property()
Decma-builtin-array-prototype.c134 ecma_value_t join_value = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_JOIN); in ecma_builtin_array_prototype_object_to_string()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-iterator-object.c251 ecma_value_t func_next = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_NEXT); in ecma_op_iterator_next()
302 ecma_value_t func_return = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_RETURN); in ecma_op_iterator_return()
346 ecma_value_t func_throw = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_THROW); in ecma_op_iterator_throw()
398 return ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_VALUE); in ecma_op_iterator_value()
525 ecma_value_t done = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_DONE); in ecma_op_iterator_step()
591 ecma_value_t done = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_DONE); in ecma_op_iterator_do()
Decma-promise-object.c271 …ecma_value_t promise = ecma_op_object_get_by_magic_id (function_p, LIT_INTERNAL_MAGIC_STRING_PROMI… in ecma_promise_reject_handler()
308 …ecma_value_t promise = ecma_op_object_get_by_magic_id (function_p, LIT_INTERNAL_MAGIC_STRING_PROMI… in ecma_promise_resolve_handler()
346 ecma_value_t then = ecma_op_object_get_by_magic_id (ecma_get_object_from_value (argv[0]), in ecma_promise_resolve_handler()
631 …ecma_value_t capability = ecma_op_object_get_by_magic_id (ecma_get_object_from_value (function_obj… in ecma_op_get_capabilities_executor_cb()
639 ecma_value_t resolve = ecma_op_object_get_by_magic_id (capability_obj_p, in ecma_op_get_capabilities_executor_cb()
651 ecma_value_t reject = ecma_op_object_get_by_magic_id (capability_obj_p, in ecma_op_get_capabilities_executor_cb()
783 …ecma_value_t constructor = ecma_op_object_get_by_magic_id (object_p, LIT_MAGIC_STRING_CONSTRUCTOR); in ecma_promise_reject_or_resolve()
Decma-regexp-object.c1988 result = ecma_op_object_get_by_magic_id (match_p, LIT_MAGIC_STRING_INDEX); in ecma_regexp_search_helper()
2037 ecma_value_t flags = ecma_op_object_get_by_magic_id (regexp_obj_p, LIT_MAGIC_STRING_FLAGS); in ecma_regexp_split_helper()
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()
2782 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_EXEC); 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()
2923 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_LASTINDEX_UL); in ecma_regexp_replace_helper()
2955 result = ecma_op_object_get_by_magic_id (this_obj_p, LIT_MAGIC_STRING_EXEC); in ecma_regexp_replace_helper()
3015 result = ecma_op_object_get_by_magic_id (current_object_p, LIT_MAGIC_STRING_INDEX); in ecma_regexp_replace_helper()
3234 ecma_value_t global_value = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_GLOBAL); in ecma_regexp_match_helper()
[all …]
Decma-objects.h44 ecma_value_t ecma_op_object_get_by_magic_id (ecma_object_t *object_p, lit_magic_string_id_t propert…
Decma-objects-arguments.c152 …prop_value_p->value = ecma_op_object_get_by_magic_id (ecma_builtin_get (ECMA_BUILTIN_ID_INTRINSIC_… in ecma_op_create_arguments_object()
Decma-objects.c904 ecma_value_t len_value = ecma_op_object_get_by_magic_id (object_p, LIT_MAGIC_STRING_LENGTH); in ecma_op_object_get_length()
928 ecma_op_object_get_by_magic_id (ecma_object_t *object_p, /**< the object */ in ecma_op_object_get_by_magic_id() function
943 …ecma_value_t symbol_value = ecma_op_object_get_by_magic_id (ecma_builtin_get (ECMA_BUILTIN_ID_INTR… in ecma_op_get_global_symbol()
2968 …ecma_value_t constructor = ecma_op_object_get_by_magic_id (this_value, LIT_MAGIC_STRING_CONSTRUCTO… in ecma_op_species_constructor()
Decma-function-object.c606 ecma_value_t prototype_obj_value = ecma_op_object_get_by_magic_id (func_obj_p, in ecma_op_function_has_instance()
745 ecma_value_t proto = ecma_op_object_get_by_magic_id (ctor_obj_p, LIT_MAGIC_STRING_PROTOTYPE); in ecma_op_get_prototype_from_constructor()
Decma-objects-general.c311 ecma_value_t function_value = ecma_op_object_get_by_magic_id (obj_p, function_name_ids_p[i]); in ecma_op_general_object_ordinary_value()
Decma-container-object.c427 result = ecma_op_object_get_by_magic_id (object_p, adder_string_id); in ecma_op_container_create()
Decma-array-object.c695 constructor = ecma_op_object_get_by_magic_id (original_array_p, LIT_MAGIC_STRING_CONSTRUCTOR); in ecma_op_array_species_create()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray-prototype.c970 ecma_op_object_get_by_magic_id (source_obj_p, LIT_MAGIC_STRING_LENGTH), in ecma_builtin_typedarray_prototype_set()
1098 ecma_value_t length_value = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_LENGTH); in ecma_builtin_typedarray_prototype_join()
1205 ecma_value_t join_value = ecma_op_object_get_by_magic_id (obj_p, LIT_MAGIC_STRING_JOIN); in ecma_builtin_typedarray_prototype_object_to_string()
2028 ecma_value_t func_value = ecma_op_object_get_by_magic_id (element_obj_p, in ecma_builtin_typedarray_prototype_to_locale_string_helper()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c822 ecma_value_t proto_value = ecma_op_object_get_by_magic_id (JERRY_CONTEXT (current_new_target), in ecma_op_implicit_constructor_handler_heritage_cb()
964 … ecma_value_t proto_parent = ecma_op_object_get_by_magic_id (parent_p, LIT_MAGIC_STRING_PROTOTYPE); in opfunc_init_class()
Dvm.c591 ecma_value_t proto_value = ecma_op_object_get_by_magic_id (JERRY_CONTEXT (current_new_target), in vm_super_call()
/third_party/jerryscript/jerry-core/api/
Djerry.c3325 …ecma_value_t function = ecma_op_object_get_by_magic_id (ecma_get_object_from_value (promise), prop… in jerry_resolve_or_reject_promise()