Searched refs:jerry_binary_operation (Results 1 – 10 of 10) sorted by relevance
/third_party/jerryscript/tests/unit-core/ |
D | test-container.c | 54 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()
|
D | test-resource-name.c | 85 …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()
|
D | test-dataview.c | 44 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()
|
D | test-api-binary-operations-arithmetics.c | 106 …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()
|
D | test-api-binary-operations-instanceof.c | 74 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()
|
D | test-api-binary-operations-comparisons.c | 267 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/ |
D | 16.MIGRATION-GUIDE.md | 728 - [`jerry_binary_operation`](02.API-REFERENCE.md#jerry_binary_operation)
|
D | 02.API-REFERENCE.md | 347 - [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/ |
D | jerryscript-core.h | 425 jerry_value_t jerry_binary_operation (jerry_binary_operation_t op,
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 1064 jerry_binary_operation (jerry_binary_operation_t op, /**< operation */ in jerry_binary_operation() function
|