Searched refs:JERRY_BIN_OP_STRICT_EQUAL (Results 1 – 7 of 7) sorted by relevance
/third_party/jerryscript/tests/unit-core/ |
D | test-api-binary-operations-comparisons.cpp | 72 T (JERRY_BIN_OP_STRICT_EQUAL, jerry_create_number (5.0), jerry_create_number (5.0), true), 73 T (JERRY_BIN_OP_STRICT_EQUAL, jerry_create_number (3.1), jerry_create_number (10), false), 74 T (JERRY_BIN_OP_STRICT_EQUAL, jerry_create_number (3.1), jerry_create_undefined (), false), 75 T (JERRY_BIN_OP_STRICT_EQUAL, jerry_create_number (3.1), jerry_create_boolean (true), false), 76 T (JERRY_BIN_OP_STRICT_EQUAL, 80 T (JERRY_BIN_OP_STRICT_EQUAL, 84 T (JERRY_BIN_OP_STRICT_EQUAL, 88 T (JERRY_BIN_OP_STRICT_EQUAL, 92 T (JERRY_BIN_OP_STRICT_EQUAL, jerry_create_undefined (), jerry_create_undefined (), true), 93 T (JERRY_BIN_OP_STRICT_EQUAL, jerry_create_undefined (), jerry_create_null (), false), [all …]
|
D | test-resource-name.cpp | 112 …TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, resource_value, resource1_name_val… 143 …TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, resource_value, resource2_name_val…
|
D | test-dataview.cpp | 70 TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, internal_buffer, arraybuffer)); 79 TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, internal_buffer, arraybuffer));
|
D | test-api-binary-operations-arithmetics.cpp | 258 …jerry_value_t equals = jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, result, tests[idx].expec…
|
/third_party/jerryscript/jerry-core/include/ |
D | jerryscript-core.h | 329 JERRY_BIN_OP_STRICT_EQUAL, /**< strict equal comparison (===) */ enumerator
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 1081 case JERRY_BIN_OP_STRICT_EQUAL: in jerry_binary_operation()
|
/third_party/jerryscript/docs/ |
D | 02.API-REFERENCE.md | 331 - JERRY_BIN_OP_STRICT_EQUAL - strict equal comparison (===)
|