Home
last modified time | relevance | path

Searched refs:ecma_op_to_boolean (Results 1 – 17 of 17) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-proxy-object.c446 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_set_prototype_of()
541 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_is_extensible()
634 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_prevent_extensions()
897 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_define_own_property()
1038 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_has()
1247 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_set()
1357 bool boolean_trap_result = ecma_op_to_boolean (trap_result); in ecma_proxy_object_delete_property()
Decma-conversion.c217 ecma_op_to_boolean (ecma_value_t value) /**< ecma value */ in ecma_op_to_boolean() function
688 uint32_t is_enumerable = (ecma_op_to_boolean (enumerable_prop_value) ? ECMA_PROP_IS_ENUMERABLE in ecma_op_to_property_descriptor()
707 …uint32_t is_configurable = (ecma_op_to_boolean (configurable_prop_value) ? ECMA_PROP_IS_CONFIGURAB… in ecma_op_to_property_descriptor()
745 uint32_t is_writable = (ecma_op_to_boolean (writable_prop_value) ? ECMA_PROP_IS_WRITABLE in ecma_op_to_property_descriptor()
Decma-boolean-object.c44 bool boolean_value = ecma_op_to_boolean (arg); in ecma_op_create_boolean_object()
Decma-conversion.h46 bool ecma_op_to_boolean (ecma_value_t value);
Decma-iterator-object.c534 bool is_done = ecma_op_to_boolean (done); in ecma_op_iterator_step()
599 *done_p = ecma_op_to_boolean (done); in ecma_op_iterator_do()
Decma-reference.c165 bool is_blocked = ecma_op_to_boolean (get_unscopables_value); in ecma_op_is_prop_unscopable()
Decma-dataview-object.c268 bool is_little_endian = ecma_op_to_boolean (is_little_endian_value); in ecma_op_dataview_get_set_view_value()
Decma-regexp-object.c2736 const bool global = ecma_op_to_boolean (result); in ecma_regexp_replace_helper()
2754 unicode = ecma_op_to_boolean (result); in ecma_regexp_replace_helper()
2802 const bool sticky = ecma_op_to_boolean (result); in ecma_regexp_replace_helper()
3242 bool global = ecma_op_to_boolean (global_value); in ecma_regexp_match_helper()
3262 bool full_unicode = ecma_op_to_boolean (full_unicode_value); in ecma_regexp_match_helper()
Decma-objects.c2911 const bool to_bool = ecma_op_to_boolean (spreadable); in ecma_op_is_concat_spreadable()
2947 const bool to_bool = ecma_op_to_boolean (is_regexp); in ecma_op_is_regexp()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-boolean.c69 return ecma_make_boolean_value (ecma_op_to_boolean (arg_value)); in ecma_builtin_boolean_dispatch_call()
Decma-builtin-reflect.c293 bool boolean_result = ecma_op_to_boolean (result); in ecma_builtin_reflect_dispatch_routine()
Decma-builtin-regexp-prototype.c125 if (ecma_op_to_boolean (result)) in ecma_builtin_regexp_prototype_get_flags()
Decma-builtin-array-prototype.c1912 bool to_boolean = ecma_op_to_boolean (call_value); in ecma_builtin_array_apply()
2110 if (ecma_op_to_boolean (call_value)) in ecma_builtin_array_prototype_object_filter()
2409 bool call_value_to_bool = ecma_op_to_boolean (call_value); in ecma_builtin_array_prototype_object_find()
/third_party/jerryscript/jerry-core/vm/
Dopcodes-ecma-relational-equality.c132 bool has_instance = ecma_op_to_boolean (has_instance_result); in opfunc_instanceof()
Dvm.c2752 bool boolean_value = ecma_op_to_boolean (value); in vm_loop()
2788 *stack_top_p++ = ecma_make_boolean_value (!ecma_op_to_boolean (left_value)); in vm_loop()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray-prototype.c240 bool to_bool_result = ecma_op_to_boolean (call_value); in ecma_builtin_typedarray_prototype_exec_routine()
749 if (ecma_op_to_boolean (call_value)) in ecma_builtin_typedarray_prototype_filter()
1635 bool call_result = ecma_op_to_boolean (call_value); in ecma_builtin_typedarray_prototype_find_helper()
/third_party/jerryscript/jerry-core/api/
Djerry.c1303 return ecma_op_to_boolean (value); in jerry_value_to_boolean()