Home
last modified time | relevance | path

Searched refs:jerry_binary_operation (Results 1 – 10 of 10) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-container.c54 instance_check = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF, empty_map, global_map); in main()
62 instance_check = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF, empty_set, global_set); in main()
70 instance_check = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF, empty_weakmap, global_weakmap); in main()
78 instance_check = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF, empty_weakset, global_weakset); in main()
Dtest-resource-name.c85 …TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, resource_value, resource1_name_val… in main()
116 …TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, resource_value, resource2_name_val… in main()
Dtest-dataview.c44 TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, internal_buffer, arraybuffer)); in main()
53 TEST_ASSERT (jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, internal_buffer, arraybuffer)); in main()
Dtest-api-binary-operations-arithmetics.c106 …jerry_value_t result = jerry_binary_operation (test_nans[idx].op, test_nans[idx].lhs, test_nans[id… in main()
229 jerry_value_t result = jerry_binary_operation (tests[idx].op, tests[idx].lhs, tests[idx].rhs); in main()
232 …jerry_value_t equals = jerry_binary_operation (JERRY_BIN_OP_STRICT_EQUAL, result, tests[idx].expec… in main()
275 …jerry_value_t result = jerry_binary_operation (tests[idx].op, error_tests[idx].lhs, error_tests[id… in main()
Dtest-api-binary-operations-instanceof.c74 jerry_value_t result = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF, in main()
104 jerry_value_t result = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF, in main()
Dtest-api-binary-operations-comparisons.c267 jerry_value_t result = jerry_binary_operation (tests[idx].op, tests[idx].lhs, tests[idx].rhs); in main()
284 …jerry_value_t result = jerry_binary_operation (tests[idx].op, error_tests[idx].lhs, error_tests[id… in main()
/third_party/jerryscript/docs/
D16.MIGRATION-GUIDE.md728 - [`jerry_binary_operation`](02.API-REFERENCE.md#jerry_binary_operation)
D02.API-REFERENCE.md347 - [jerry_binary_operation](#jerry_binary_operation)
2275 ## jerry_binary_operation section in Binary operations
2288 jerry_binary_operation (jerry_binary_operation_t op,
2309 jerry_value_t result = jerry_binary_operation (JERRY_BIN_OP_EQUAL, value1, value2)
2366 jerry_value_t is_instance = jerry_binary_operation (JERRY_BIN_OP_INSTANCEOF,
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h425 jerry_value_t jerry_binary_operation (jerry_binary_operation_t op,
/third_party/jerryscript/jerry-core/api/
Djerry.c1064 jerry_binary_operation (jerry_binary_operation_t op, /**< operation */ in jerry_binary_operation() function