/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-comparison.c | 187 || 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()
|
D | ecma-conversion.c | 60 || 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()
|
D | ecma-proxy-object.c | 56 || !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()
|
D | ecma-regexp-object.c | 1981 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()
|
D | ecma-objects.c | 1003 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()
|
D | ecma-function-object.c | 698 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()
|
D | ecma-objects-general.c | 94 || ecma_is_value_null (value)); in ecma_op_create_object_object_arg()
|
D | ecma-container-object.c | 412 if (ecma_is_value_undefined (iterable) || ecma_is_value_null (iterable)) in ecma_op_container_create()
|
D | ecma-array-object.c | 718 if (ecma_is_value_null (constructor)) in ecma_op_array_species_create()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-object.c | 99 || 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()
|
D | ecma-builtin-string-prototype.c | 291 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()
|
D | ecma-builtin-function-prototype.c | 103 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()
|
D | ecma-builtin-array.c | 134 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()
|
D | ecma-builtin-reflect.c | 231 if (!ecma_is_value_object (arguments_list[1]) && !ecma_is_value_null (arguments_list[1])) in ecma_builtin_reflect_dispatch_routine()
|
D | ecma-builtin-helpers.c | 126 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()
|
D | ecma-builtin-promise.c | 513 if (!ecma_is_value_null (species_symbol) && !ecma_is_value_undefined (species_symbol)) in ecma_builtin_promise_race_or_all()
|
D | ecma-builtin-regexp-prototype.c | 514 ecma_value_t ret_value = ecma_make_boolean_value (!ecma_is_value_null (result)); in ecma_builtin_regexp_prototype_test()
|
D | ecma-builtin-json.c | 1223 if (ecma_is_value_null (value)) in ecma_builtin_json_serialize_property()
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-helpers-value.c | 186 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()
|
D | ecma-gc.c | 511 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()
|
D | ecma-helpers.h | 219 bool JERRY_ATTR_CONST ecma_is_value_null (ecma_value_t value);
|
/third_party/jerryscript/jerry-core/vm/ |
D | opcodes.c | 282 || 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/ |
D | jerry.c | 809 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/ |
D | debugger.c | 296 else if (ecma_is_value_null (value)) in jerry_debugger_get_variable_type()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
D | ecma-builtin-typedarray-prototype.c | 1040 || ecma_is_value_null (index_value)) in ecma_op_typedarray_get_to_string_at_index()
|