Searched refs:arg_list (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/toolchain/build/compile_script/ |
D | ark.py | 356 def build_for_gn_target(self, out_path: str, gn_args: list, arg_list: list, log_file_name: str): 360 str_of_time_now(), " ".join(arg_list)) 382 " {}".format(" ".join(arg_list)) 391 def build_for_test262(self, out_path, gn_args: list, arg_list: list, log_file_name: str, 394 if len(arg_list) == 0: 396 elif len(arg_list) == 1: 397 if ".js" in arg_list[0]: 398 args_to_test262_cmd = "--file test262/data/test_es2021/{}".format(arg_list[0]) 400 args_to_test262_cmd = "--dir test262/data/test_es2021/{}".format(arg_list[0]) 511 def build_for_regress_test(self, out_path, gn_args: list, arg_list: list, log_file_name: str): [all …]
|
/arkcompiler/runtime_core/static_core/disassembler/templates/ |
D | intrinsics_gen.h.erb | 26 % arg_list = (0...nargs).map { |i| "arg#{i}" }.join(", ") 29 <%= intrinsic.impl %>(<%= arg_list %>); 31 return <%= intrinsic.impl %>(<%= arg_list %>); 90 % arg_list = (0...nargs).map do |i| 97 % arg_list = arg_list.join(", ") 100 <%= intrinsic.orig_impl %>(<%= arg_list %>); 102 return <%= intrinsic.orig_impl %>(<%= arg_list %>);
|
/arkcompiler/runtime_core/disassembler/templates/ |
D | intrinsics_gen.h.erb | 26 % arg_list = (0...nargs).map { |i| "arg#{i}" }.join(", ") 29 <%= intrinsic.impl %>(<%= arg_list %>); 31 return <%= intrinsic.impl %>(<%= arg_list %>); 90 % arg_list = (0...nargs).map do |i| 97 % arg_list = arg_list.join(", ") 100 <%= intrinsic.orig_impl %>(<%= arg_list %>); 102 return <%= intrinsic.orig_impl %>(<%= arg_list %>);
|
/arkcompiler/runtime_core/static_core/runtime/templates/ |
D | intrinsics_gen.h.erb | 31 % arg_list = (0...nargs).map { |i| "arg#{i}" }.join(", ") 34 <%= intrinsic.impl %>(<%= arg_list %>); 36 return <%= intrinsic.impl %>(<%= arg_list %>); 144 % arg_list = (0...nargs).map do |i| 151 % arg_list = arg_list.join(", ") 154 <%= intrinsic.orig_impl %>(<%= arg_list %>); 156 return <%= intrinsic.orig_impl %>(<%= arg_list %>);
|
/arkcompiler/runtime_core/static_core/assembler/ |
D | asm_metadata.rb | 218 def arg_list(is_bool) method 229 args = arg_list(is_bool) 239 args = arg_list(is_bool)
|
/arkcompiler/runtime_core/assembler/ |
D | asm_metadata.rb | 218 def arg_list(is_bool) method 229 args = arg_list(is_bool) 239 args = arg_list(is_bool)
|
/arkcompiler/runtime_core/static_core/docs/ |
D | assembly_format.md | 408 func_args := "(" arg_list ")" 409 arg_list := <","-separated list of argument names and their respective types> 419 ctor_args := "(" arg_list ")" 420 arg_list := <","-separated list of argument names and their respective types>
|
/arkcompiler/runtime_core/docs/ |
D | assembly_format.md | 455 func_args := "(" arg_list ")" 456 arg_list := <","-separated list of argument names and their respective types>
|