Home
last modified time | relevance | path

Searched refs:ecma_is_lexical_environment (Results 1 – 16 of 16) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-lex-env.c132 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_has_binding()
164 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_create_mutable_binding()
228 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_set_mutable_binding()
289 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_get_binding_value()
341 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_delete_binding()
393 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_implicit_this_value()
421 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_create_immutable_binding()
448 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_initialize_binding()
Decma-objects.c78 && !ecma_is_lexical_environment (object_p)); in ecma_op_object_get_own_property()
326 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_object_get_own_property()
450 && !ecma_is_lexical_environment (object_p)); in ecma_op_object_find_own()
541 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_object_find_own()
774 JERRY_ASSERT (ecma_is_lexical_environment (object_p) in ecma_op_object_get_own_data_prop()
1258 && !ecma_is_lexical_environment (object_p)); in ecma_op_object_put_with_receiver()
1348 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_object_put_with_receiver()
1688 && !ecma_is_lexical_environment (obj_p)); in ecma_op_object_delete()
1731 && !ecma_is_lexical_environment (obj_p)); in ecma_op_object_default_value()
1770 && !ecma_is_lexical_environment (obj_p)); in ecma_op_object_define_own_property()
[all …]
Decma-get-put-value.c52 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_get_value_lex_env_base()
206 && ecma_is_lexical_environment (lex_env_p)); in ecma_op_put_value_lex_env_base()
Decma-function-object.c77 JERRY_ASSERT (!ecma_is_lexical_environment (obj_p)); in ecma_op_object_is_callable()
115 JERRY_ASSERT (!ecma_is_lexical_environment (obj_p)); in ecma_object_is_constructor()
223 JERRY_ASSERT (ecma_is_lexical_environment (scope_p)); in ecma_op_create_function_object()
582 && !ecma_is_lexical_environment (func_obj_p)); in ecma_op_function_has_instance()
1062 && !ecma_is_lexical_environment (func_obj_p)); in ecma_op_function_call()
1204 && !ecma_is_lexical_environment (func_obj_p)); in ecma_op_function_construct()
Decma-objects-general.c144 && !ecma_is_lexical_environment (obj_p)); in ecma_op_general_object_delete()
233 && !ecma_is_lexical_environment (obj_p)); in ecma_op_general_object_default_value()
374 && !ecma_is_lexical_environment (object_p)); in ecma_op_general_object_define_own_property()
Decma-typedarray-object.c1237 JERRY_ASSERT (!ecma_is_lexical_environment (obj_p)); in ecma_object_is_typedarray()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers.c150 && !ecma_is_lexical_environment (binding_obj_p)); in ecma_create_object_lex_env()
173 ecma_is_lexical_environment (const ecma_object_t *object_p) /**< object or lexical environment */ in ecma_is_lexical_environment() function
189 JERRY_ASSERT (!ecma_is_lexical_environment (object_p)); in ecma_op_ordinary_object_set_extensible()
203 JERRY_ASSERT (!ecma_is_lexical_environment (object_p)); in ecma_get_object_type()
218 JERRY_ASSERT (!ecma_is_lexical_environment (object_p)); in ecma_get_object_is_builtin()
274 JERRY_ASSERT (ecma_is_lexical_environment (object_p)); in ecma_get_lex_env_type()
288 JERRY_ASSERT (ecma_is_lexical_environment (object_p)); in ecma_get_lex_env_binding_object()
523 JERRY_ASSERT (ecma_is_lexical_environment (object_p) in ecma_create_named_data_property()
551 JERRY_ASSERT (ecma_is_lexical_environment (object_p) in ecma_create_named_accessor_property()
585 JERRY_ASSERT (ecma_is_lexical_environment (obj_p) in ecma_find_named_property()
[all …]
Decma-gc.c532 if (ecma_is_lexical_environment (object_p)) in ecma_gc_mark()
1027 if (ecma_is_lexical_environment (object_p)) in ecma_gc_free_object()
1572 if (!ecma_is_lexical_environment (obj_iter_p) in ecma_free_unused_memory()
1575 if (!ecma_is_lexical_environment (obj_iter_p) in ecma_free_unused_memory()
Decma-helpers.h433 bool JERRY_ATTR_PURE ecma_is_lexical_environment (const ecma_object_t *object_p);
Decma-module.c678 JERRY_ASSERT (ecma_is_lexical_environment (local_env_p)); in ecma_module_connect_imports()
/third_party/jerryscript/jerry-core/ext/
Dheapdump.c264 if (ecma_is_lexical_environment(object)) { in DumpInfoObject()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c221 JERRY_ASSERT (!ecma_is_lexical_environment (obj_p)); in vm_op_delete_prop()
260 JERRY_ASSERT (ecma_is_lexical_environment (ref_base_lex_env_p)); in vm_op_delete_var()
Dvm.c235 if (!ecma_is_lexical_environment (object_p)) in vm_op_set_value()
514 if (ecma_is_lexical_environment (this_obj_p)) in vm_get_implicit_this_value()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtins.c275 JERRY_ASSERT (obj_p != NULL && !ecma_is_lexical_environment (obj_p)); in ecma_builtin_is()
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c233 JERRY_ASSERT (ecma_is_lexical_environment (lex_env_p)); in jerry_debugger_send_scope_chain()
/third_party/jerryscript/jerry-core/api/
Djerry.c3043 if (ecma_is_lexical_environment (object_p)) in jerry_object_is_valid_foreach()