Searched refs:ecma_op_strict_equality_compare (Results 1 – 5 of 5) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-comparison.h | 30 bool ecma_op_strict_equality_compare (ecma_value_t x, ecma_value_t y);
|
D | ecma-comparison.c | 208 ecma_op_strict_equality_compare (ecma_value_t x, /**< first operand */ in ecma_op_strict_equality_compare() function
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-array-prototype.c | 1699 if (ecma_op_strict_equality_compare (args[0], buffer_p[from_idx])) in ecma_builtin_array_prototype_object_index_of() 1724 && ecma_op_strict_equality_compare (args[0], get_value)) in ecma_builtin_array_prototype_object_index_of() 1805 if (ecma_op_strict_equality_compare (search_element, buffer_p[from_idx])) in ecma_builtin_array_prototype_object_last_index_of() 1828 && ecma_op_strict_equality_compare (search_element, get_value)) in ecma_builtin_array_prototype_object_last_index_of()
|
/third_party/jerryscript/jerry-core/vm/ |
D | vm.c | 2736 if (ecma_op_strict_equality_compare (value, stack_top_p[-1])) in vm_loop() 3115 bool is_equal = ecma_op_strict_equality_compare (left_value, right_value); in vm_loop() 3124 bool is_equal = ecma_op_strict_equality_compare (left_value, right_value); in vm_loop()
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 1083 return ecma_make_boolean_value (ecma_op_strict_equality_compare (lhs, rhs)); in jerry_binary_operation()
|