Home
last modified time | relevance | path

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

12

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-comparison.c187 || ecma_is_value_null (x)) in ecma_op_abstract_equality_compare()
191 bool is_equal = ecma_is_value_undefined (y) || ecma_is_value_null (y); in ecma_op_abstract_equality_compare()
222 || ecma_is_value_null (x) in ecma_op_strict_equality_compare()
228 || ecma_is_value_null (y) in ecma_op_strict_equality_compare()
Decma-conversion.c60 || ecma_is_value_null (value)) in ecma_op_check_object_coercible()
225 || ecma_is_value_null (value)); in ecma_op_to_boolean()
311 if (ecma_is_value_null (value)) in ecma_op_to_number()
378 if (ecma_is_value_null (value)) in ecma_get_number()
455 else if (ecma_is_value_null (value)) in ecma_op_to_string()
534 || ecma_is_value_null (value)) in ecma_op_to_object()
Decma-proxy-object.c56 || !ecma_is_value_null (((ecma_proxy_object_t *) obj_p)->handler)); in ecma_proxy_validate()
120 if (ecma_is_value_null (rev_proxy_p->proxy)) in ecma_proxy_revoke_cb()
246 JERRY_ASSERT (ecma_is_value_null (proto) || ecma_is_value_object (proto)); in ecma_proxy_object_prototype_to_cp()
248 if (ecma_is_value_null (proto)) in ecma_proxy_object_prototype_to_cp()
271 if (ecma_is_value_null (handler)) in ecma_validate_proxy_object()
334 if (!ecma_is_value_object (handler_proto) && !ecma_is_value_null (handler_proto)) in ecma_proxy_object_get_prototype_of()
402 JERRY_ASSERT (ecma_is_value_object (proto) || ecma_is_value_null (proto)); in ecma_proxy_object_set_prototype_of()
Decma-regexp-object.c1981 if (ecma_is_value_null (match)) in ecma_regexp_search_helper()
2147 if (ecma_is_value_null (match)) in ecma_regexp_split_helper()
2191 if (ecma_is_value_null (result)) in ecma_regexp_split_helper()
2867 if (!ecma_is_value_object (result) && !ecma_is_value_null (result)) in ecma_regexp_replace_helper()
2888 if (ecma_is_value_null (result)) in ecma_regexp_replace_helper()
3292 if (ecma_is_value_null (result_value)) in ecma_regexp_match_helper()
3430 if (!ecma_is_value_object (result) && !ecma_is_value_null (result)) in ecma_op_regexp_exec()
Decma-objects.c1003 if (ecma_is_value_undefined (func) || ecma_is_value_null (func)) in ecma_op_get_method()
2995 if (ecma_is_value_undefined (species) || ecma_is_value_null (species)) in ecma_op_species_constructor()
3123 JERRY_ASSERT (ecma_is_value_object (proto) || ecma_is_value_null (proto)); in ecma_op_ordinary_object_set_prototype_of()
3127 …ecma_object_t *new_proto_p = ecma_is_value_null (proto) ? NULL : ecma_get_object_from_value (proto… in ecma_op_ordinary_object_set_prototype_of()
Decma-function-object.c698 super_ctor_p = ecma_is_value_null (super_ctor) ? NULL : ecma_get_object_from_value (super_ctor); in ecma_op_function_get_super_constructor()
842 || ecma_is_value_null (this_binding)) in ecma_op_function_call_simple()
Decma-objects-general.c94 || ecma_is_value_null (value)); in ecma_op_create_object_object_arg()
Decma-container-object.c412 if (ecma_is_value_undefined (iterable) || ecma_is_value_null (iterable)) in ecma_op_container_create()
Decma-array-object.c718 if (ecma_is_value_null (constructor)) in ecma_op_array_species_create()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c99 || ecma_is_value_null (arguments_list_p[0])) in ecma_builtin_object_dispatch_call()
180 if (!ecma_is_value_object (arg2) && !ecma_is_value_null (arg2)) in ecma_builtin_object_object_set_prototype_of()
244 if (!ecma_is_value_object (arg2) && !ecma_is_value_null (arg2)) in ecma_builtin_object_object_set_proto()
869 if (!ecma_is_value_object (arg1) && !ecma_is_value_null (arg1)) in ecma_builtin_object_object_create()
876 if (!ecma_is_value_null (arg1)) in ecma_builtin_object_object_create()
968 if (ecma_is_value_undefined (next_source) || ecma_is_value_null (next_source)) in ecma_builtin_object_object_assign()
Decma-builtin-string-prototype.c291 if (!(ecma_is_value_undefined (regexp_arg) || ecma_is_value_null (regexp_arg))) in ecma_builtin_string_prototype_object_match()
396 if (!(ecma_is_value_undefined (search_value) || ecma_is_value_null (search_value))) in ecma_builtin_string_prototype_object_replace()
407 if (!ecma_is_value_undefined (replace_symbol) && !ecma_is_value_null (replace_symbol)) in ecma_builtin_string_prototype_object_replace()
585 if (!(ecma_is_value_undefined (regexp_value) || ecma_is_value_null (regexp_value))) in ecma_builtin_string_prototype_object_search()
596 if (!ecma_is_value_undefined (search_symbol) && !ecma_is_value_null (search_symbol)) in ecma_builtin_string_prototype_object_search()
750 if (!(ecma_is_value_undefined (separator_value) || ecma_is_value_null (separator_value))) in ecma_builtin_string_prototype_object_split()
761 if (!ecma_is_value_undefined (split_symbol) && !ecma_is_value_null (split_symbol)) in ecma_builtin_string_prototype_object_split()
Decma-builtin-function-prototype.c103 if (ecma_is_value_null (arg2) || ecma_is_value_undefined (arg2)) in ecma_builtin_function_prototype_object_apply()
226 prototype_obj_p = ecma_is_value_null (proto) ? NULL : ecma_get_object_from_value (proto); in ecma_builtin_function_prototype_object_bind()
Decma-builtin-array.c134 if (ecma_is_value_undefined (array) || ecma_is_value_null (array)) in ecma_builtin_array_object_from()
295 if (ecma_is_value_undefined (array) || ecma_is_value_null (array)) in ecma_builtin_array_object_from()
Decma-builtin-reflect.c231 if (!ecma_is_value_object (arguments_list[1]) && !ecma_is_value_null (arguments_list[1])) in ecma_builtin_reflect_dispatch_routine()
Decma-builtin-helpers.c126 else if (ecma_is_value_null (this_arg)) in ecma_builtin_helper_object_to_string()
217 if (ecma_is_value_undefined (index_value) || ecma_is_value_null (index_value)) in ecma_builtin_helper_get_to_locale_string_at_index()
Decma-builtin-promise.c513 if (!ecma_is_value_null (species_symbol) && !ecma_is_value_undefined (species_symbol)) in ecma_builtin_promise_race_or_all()
Decma-builtin-regexp-prototype.c514 ecma_value_t ret_value = ecma_make_boolean_value (!ecma_is_value_null (result)); in ecma_builtin_regexp_prototype_test()
Decma-builtin-json.c1223 if (ecma_is_value_null (value)) in ecma_builtin_json_serialize_property()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-value.c186 ecma_is_value_null (ecma_value_t value) /**< ecma value */ in ecma_is_value_null() function
405 || ecma_is_value_null (value) in ecma_check_value_type_is_spec_defined()
1156 else if (ecma_is_value_null (value)) in ecma_get_typeof_lit_id()
Decma-gc.c511 if (!ecma_is_value_null (proxy_p->target)) in ecma_gc_mark_proxy_object()
516 if (!ecma_is_value_null (proxy_p->handler)) in ecma_gc_mark_proxy_object()
743 if (!ecma_is_value_null (rev_proxy_p->proxy)) in ecma_gc_mark()
Decma-helpers.h219 bool JERRY_ATTR_CONST ecma_is_value_null (ecma_value_t value);
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c282 || ecma_is_value_null (left_value)) in opfunc_for_in()
952 else if (!ecma_is_value_null (super_class)) in opfunc_init_class()
978 else if (ecma_is_value_null (proto_parent)) in opfunc_init_class()
/third_party/jerryscript/jerry-core/api/
Djerry.c809 return ecma_is_value_null (value); in jerry_value_is_null()
965 return ecma_is_value_null (value) ? JERRY_TYPE_NULL : JERRY_TYPE_OBJECT; in jerry_value_get_type()
2660 else if (!ecma_is_value_null (getter)) in jerry_define_own_property()
2680 else if (!ecma_is_value_null (setter)) in jerry_define_own_property()
3015 || (!ecma_is_value_object (proto_obj_val) && !ecma_is_value_null (proto_obj_val))) in jerry_set_prototype()
/third_party/jerryscript/jerry-core/debugger/
Ddebugger.c296 else if (ecma_is_value_null (value)) in jerry_debugger_get_variable_type()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray-prototype.c1040 || ecma_is_value_null (index_value)) in ecma_op_typedarray_get_to_string_at_index()

12