/third_party/jerryscript/tests/unit-core/ |
D | test-promise.c | 44 JERRY_UNUSED (func_obj_val); in create_promise1_handler() 45 JERRY_UNUSED (this_val); in create_promise1_handler() 46 JERRY_UNUSED (args_p); in create_promise1_handler() 47 JERRY_UNUSED (args_cnt); in create_promise1_handler() 61 JERRY_UNUSED (func_obj_val); in create_promise2_handler() 62 JERRY_UNUSED (this_val); in create_promise2_handler() 63 JERRY_UNUSED (args_p); in create_promise2_handler() 64 JERRY_UNUSED (args_cnt); in create_promise2_handler() 78 JERRY_UNUSED (func_obj_val); in assert_handler() 79 JERRY_UNUSED (this_val); in assert_handler()
|
D | test-proxy.c | 66 JERRY_UNUSED (function_obj); in handler_get() 67 JERRY_UNUSED (this_val); in handler_get() 92 JERRY_UNUSED (function_obj); in handler_set() 93 JERRY_UNUSED (this_val); in handler_set() 94 JERRY_UNUSED (args_p); in handler_set() 95 JERRY_UNUSED (args_count); in handler_set()
|
D | test-abort.c | 27 JERRY_UNUSED (function_obj); in callback_func() 28 JERRY_UNUSED (this_val); in callback_func() 29 JERRY_UNUSED (args_p); in callback_func() 30 JERRY_UNUSED (args_count); in callback_func()
|
D | test-newtarget.c | 55 JERRY_UNUSED (func_obj_val); in construct_handler() 56 JERRY_UNUSED (this_val); in construct_handler() 57 JERRY_UNUSED (args_p); in construct_handler()
|
D | test-regression-3588.c | 30 JERRY_UNUSED (func_obj_val); in construct_handler() 31 JERRY_UNUSED (this_val); in construct_handler()
|
D | test-common.h | 28 #define JERRY_UNUSED(x) ((void) (x)) macro
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-ext-arg.c | 114 JERRY_UNUSED (func_obj_val); in test_validator1_handler() 218 JERRY_UNUSED (func_obj_val); in test_validator2_handler() 265 JERRY_UNUSED (func_obj_val); in test_validator3_handler() 331 JERRY_UNUSED (func_obj_val); in test_validator_prop1_handler() 332 JERRY_UNUSED (this_val); in test_validator_prop1_handler() 333 JERRY_UNUSED (args_cnt); in test_validator_prop1_handler() 374 JERRY_UNUSED (func_obj_val); in test_validator_prop2_handler() 375 JERRY_UNUSED (this_val); in test_validator_prop2_handler() 424 JERRY_UNUSED (func_obj_val); in test_validator_prop3_handler() 425 JERRY_UNUSED (this_val); in test_validator_prop3_handler() [all …]
|
D | test-common.h | 23 #define JERRY_UNUSED(x) ((void) (x)) macro
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 398 JERRY_UNUSED (out_stats_p); in jerry_get_memory_stats() 462 JERRY_UNUSED (resource_name_p); in jerry_parse() 463 JERRY_UNUSED (resource_name_length); in jerry_parse() 504 JERRY_UNUSED (source_p); in jerry_parse() 505 JERRY_UNUSED (source_size); in jerry_parse() 506 JERRY_UNUSED (parse_opts); in jerry_parse() 537 JERRY_UNUSED (resource_name_p); in jerry_parse_function() 538 JERRY_UNUSED (resource_name_length); in jerry_parse_function() 585 JERRY_UNUSED (arg_list_p); in jerry_parse_function() 586 JERRY_UNUSED (arg_list_size); in jerry_parse_function() [all …]
|
D | jerry-debugger.c | 88 JERRY_UNUSED (enable_stop_at_breakpoint); in jerry_debugger_stop_at_breakpoint() 180 JERRY_UNUSED (callback_p); in jerry_debugger_wait_for_client_source() 181 JERRY_UNUSED (user_p); in jerry_debugger_wait_for_client_source() 204 JERRY_UNUSED (buffer); in jerry_debugger_send_output() 205 JERRY_UNUSED (str_size); in jerry_debugger_send_output() 226 JERRY_UNUSED (level); in jerry_debugger_send_log() 227 JERRY_UNUSED (buffer); in jerry_debugger_send_log() 228 JERRY_UNUSED (str_size); in jerry_debugger_send_log()
|
D | jerry-snapshot.c | 40 JERRY_UNUSED (has_regex); in snapshot_get_global_flags() 41 JERRY_UNUSED (has_class); in snapshot_get_global_flags() 743 JERRY_UNUSED (resource_name_p); in jerry_generate_snapshot_with_args() 744 JERRY_UNUSED (resource_name_length); in jerry_generate_snapshot_with_args() 881 JERRY_UNUSED (resource_name_p); in jerry_generate_snapshot() 882 JERRY_UNUSED (resource_name_length); in jerry_generate_snapshot() 883 JERRY_UNUSED (source_p); in jerry_generate_snapshot() 884 JERRY_UNUSED (source_size); in jerry_generate_snapshot() 885 JERRY_UNUSED (generate_snapshot_opts); in jerry_generate_snapshot() 886 JERRY_UNUSED (buffer_p); in jerry_generate_snapshot() [all …]
|
/third_party/jerryscript/jerry-core/jrt/ |
D | jrt.h | 34 #define JERRY_UNUSED(x) ((void) (x)) macro 36 #define JERRY_UNUSED_1(_1) JERRY_UNUSED (_1) 37 #define JERRY_UNUSED_2(_1, _2) JERRY_UNUSED (_1), JERRY_UNUSED_1 (_2) 38 #define JERRY_UNUSED_3(_1, _2, _3) JERRY_UNUSED (_1), JERRY_UNUSED_2 (_2, _3) 39 #define JERRY_UNUSED_4(_1, _2, _3, _4) JERRY_UNUSED (_1), JERRY_UNUSED_3 (_2, _3, _4) 40 #define JERRY_UNUSED_5(_1, _2, _3, _4, _5) JERRY_UNUSED (_1), JERRY_UNUSED_4 (_2, _3, _4, _5) 88 JERRY_UNUSED (x); \
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-eval.c | 50 JERRY_UNUSED(code_p); in ecma_op_eval() 51 JERRY_UNUSED(parse_opts); in ecma_op_eval() 124 JERRY_UNUSED (code_p); in ecma_op_eval_chars_buffer() 125 JERRY_UNUSED (code_buffer_size); in ecma_op_eval_chars_buffer() 126 JERRY_UNUSED (parse_opts); in ecma_op_eval_chars_buffer()
|
D | ecma-try-catch-macro.h | 42 JERRY_UNUSED (var);
|
D | ecma-promise-object.c | 267 JERRY_UNUSED (this); in ecma_promise_reject_handler() 304 JERRY_UNUSED (this); in ecma_promise_resolve_handler() 584 JERRY_UNUSED (executor); in ecma_op_create_promise_object() 629 JERRY_UNUSED (this_val); in ecma_op_get_capabilities_executor_cb()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-number.c | 111 JERRY_UNUSED (this_arg); in ecma_builtin_number_object_is_finite() 137 JERRY_UNUSED (this_arg); in ecma_builtin_number_object_is_nan() 164 JERRY_UNUSED (this_arg); in ecma_builtin_number_object_is_integer() 201 JERRY_UNUSED (this_arg); in ecma_builtin_number_object_is_safe_integer()
|
D | ecma-builtin-arraybuffer.c | 59 JERRY_UNUSED (this_arg); in ecma_builtin_arraybuffer_object_is_view() 63 JERRY_UNUSED (arg); in ecma_builtin_arraybuffer_object_is_view()
|
D | ecma-builtin-string.c | 65 JERRY_UNUSED (this_arg); in ecma_builtin_string_object_from_char_code() 129 JERRY_UNUSED (this_arg); in ecma_builtin_string_object_raw() 283 JERRY_UNUSED (this_arg); in ecma_builtin_string_object_from_code_point()
|
D | ecma-builtin-symbol.c | 200 JERRY_UNUSED (this_arg); in ecma_builtin_symbol_for() 226 JERRY_UNUSED (this_arg); in ecma_builtin_symbol_key_for()
|
D | ecma-builtin-date.c | 617 JERRY_UNUSED (this_arg); in ecma_builtin_date_parse() 658 JERRY_UNUSED (this_arg); in ecma_builtin_date_utc() 692 JERRY_UNUSED (this_arg); in ecma_builtin_date_now() 708 JERRY_UNUSED (arguments_list_p); in ecma_builtin_date_dispatch_call() 709 JERRY_UNUSED (arguments_list_len); in ecma_builtin_date_dispatch_call()
|
D | ecma-builtin-internal-routines-template.inc.h | 243 JERRY_UNUSED (this_arg_value); in DISPATCH_ROUTINE_ROUTINE_NAME() 244 JERRY_UNUSED (arguments_list); in DISPATCH_ROUTINE_ROUTINE_NAME() 245 JERRY_UNUSED (arguments_number); in DISPATCH_ROUTINE_ROUTINE_NAME()
|
D | ecma-builtin-reflect.c | 87 JERRY_UNUSED (this_arg); in ecma_builtin_reflect_dispatch_routine() 88 JERRY_UNUSED (arguments_number); in ecma_builtin_reflect_dispatch_routine()
|
D | ecma-builtin-proxy.c | 57 JERRY_UNUSED (this_arg); in ecma_builtin_proxy_object_revocable()
|
/third_party/jerryscript/jerry-core/jmem/ |
D | jmem-allocator-internal.h | 82 #define JMEM_HEAP_STAT_ALLOC(v1) JERRY_UNUSED (v1) 83 #define JMEM_HEAP_STAT_FREE(v1) JERRY_UNUSED (v1)
|
/third_party/jerryscript/jerry-core/parser/regexp/ |
D | re-bytecode.c | 281 JERRY_UNUSED (re_ctx_p); in re_append_char() 310 JERRY_UNUSED (re_ctx_p); in re_insert_char() 340 JERRY_UNUSED (unicode); in re_get_char()
|