Home
last modified time | relevance | path

Searched refs:ecma_op_strict_equality_compare (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-comparison.h30 bool ecma_op_strict_equality_compare (ecma_value_t x, ecma_value_t y);
Decma-comparison.c208 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/
Decma-builtin-array-prototype.c1699 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/
Dvm.c2736 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/
Djerry.c1083 return ecma_make_boolean_value (ecma_op_strict_equality_compare (lhs, rhs)); in jerry_binary_operation()