Searched full:invoker (Results 1 – 22 of 22) sorted by relevance
| /arkcompiler/runtime_core/ |
| D | ark_config.gni | 66 assert(defined(invoker.data_file), "data_file is required!") 67 assert(defined(invoker.template_file), "template_file is required!") 68 assert(defined(invoker.output_file), "output_file is required!") 71 if (defined(invoker.requires)) { 72 requires = string_join(",", rebase_path(invoker.requires, root_build_dir)) 76 if (defined(invoker.extra_dependencies)) { 77 extra_dependencies += invoker.extra_dependencies 81 if (defined(invoker.extra_argv)) { 82 positional_argv += invoker.extra_argv 86 rebase_path(invoker.template_file, root_build_dir), [all …]
|
| /arkcompiler/toolchain/build/templates/cxx/ |
| D | cxx.gni | 16 forward_variables_from(invoker, 28 if (defined(invoker.subsystem_name) && defined(invoker.part_name)) { 29 subsystem_name = invoker.subsystem_name 30 part_name = invoker.part_name 31 } else if (defined(invoker.subsystem_name)) { 32 subsystem_name = invoker.subsystem_name 43 if (defined(invoker.configs)) { 44 configs += invoker.configs 47 if (defined(invoker.remove_configs)) { 48 configs -= invoker.remove_configs [all …]
|
| /arkcompiler/runtime_core/gn/ark/runtime_core/ |
| D | ark_config.gni | 78 assert(defined(invoker.data_file), "data_file is required!") 79 assert(defined(invoker.template_file), "template_file is required!") 80 assert(defined(invoker.output_file), "output_file is required!") 83 if (defined(invoker.requires)) { 84 requires = string_join(",", rebase_path(invoker.requires, root_build_dir)) 88 if (defined(invoker.extra_dependencies)) { 89 extra_dependencies += invoker.extra_dependencies 93 if (defined(invoker.extra_argv)) { 94 positional_argv += invoker.extra_argv 98 rebase_path(invoker.template_file, root_build_dir), [all …]
|
| /arkcompiler/toolchain/build/toolchain/ |
| D | gcc_toolchain.gni | 23 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value") 24 assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value") 25 assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value") 26 assert(defined(invoker.ld), "gcc_toolchain() must specify a \"ld\" value") 30 if (defined(invoker.rebuild_define)) { 31 rebuild_string = "-D" + invoker.rebuild_define + " " 37 # "invoker.toolchain_args.foo", so make a temporary to hold the toolchain 39 assert(defined(invoker.toolchain_args), 41 invoker_toolchain_args = invoker.toolchain_args 50 # Populate toolchain args from the invoker. [all …]
|
| /arkcompiler/runtime_core/gn/build/ |
| D | ohos.gni | 16 forward_variables_from(invoker, 25 if (defined(invoker.configs)) { 26 configs += invoker.configs 29 if (defined(invoker.remove_configs)) { 30 configs -= invoker.remove_configs 37 forward_variables_from(invoker, 48 if (defined(invoker.configs)) { 49 configs += invoker.configs 52 if (defined(invoker.remove_configs)) { 53 configs -= invoker.remove_configs [all …]
|
| /arkcompiler/ets_frontend/ts2panda/ |
| D | ts2abc_config.gni | 73 assert(defined(invoker.plugin_path), "plugin_path is required!") 74 assert(defined(invoker.plugin_name), "plugin_name is required!") 75 assert(defined(invoker.generat_file), "generat_file is required!") 76 assert(defined(invoker.package_name), "package_name is required!") 77 assert(defined(invoker.out_puts), "out_puts is required!") 80 if (defined(invoker.extra_dependencies)) { 81 extra_dependencies += invoker.extra_dependencies 97 invoker.plugin_path, 99 invoker.plugin_name, 101 invoker.generat_file, [all …]
|
| /arkcompiler/toolchain/build/ |
| D | test.gni | 18 assert(defined(invoker.test_type), "test_type is required.") 19 assert(defined(invoker.module_out_path)) 22 if (defined(invoker.deps)) { 23 _deps += invoker.deps 27 if (defined(invoker.fuzz_config_file)) { 28 fuzz_config_file = invoker.fuzz_config_file 40 _has_sources = defined(invoker.sources) && invoker.sources != [] 43 write_file(_c_sources_file, rebase_path(invoker.sources, root_build_dir)) 47 forward_variables_from(invoker, 55 forward_variables_from(invoker, [ "visibility" ]) [all …]
|
| /arkcompiler/ets_frontend/es2panda/ |
| D | es2abc_config.gni | 46 assert(defined(invoker.src_js), "src_js is required!") 47 assert(defined(invoker.dst_file), "dst_file is required!") 48 assert(defined(invoker.out_puts), "out_puts is required!") 51 if (defined(invoker.extra_dependencies)) { 52 extra_dependencies += invoker.extra_dependencies 56 if (defined(invoker.extra_visibility)) { 57 visibility = invoker.extra_visibility 67 invoker.src_js, 69 invoker.dst_file, 74 if (defined(invoker.extra_args)) { [all …]
|
| /arkcompiler/ets_runtime/ |
| D | js_runtime_config.gni | 62 assert(defined(invoker.data_file), "data_file is required!") 63 assert(defined(invoker.template_file), "template_file is required!") 64 assert(defined(invoker.output_file), "output_file is required!") 67 if (defined(invoker.requires)) { 68 requires = string_join(",", rebase_path(invoker.requires, root_build_dir)) 72 if (defined(invoker.extra_dependencies)) { 73 extra_dependencies += invoker.extra_dependencies 81 invoker.template_file, 82 invoker.data_file, 84 outputs = [ invoker.output_file ] [all …]
|
| /arkcompiler/runtime_core/gn/build/toolchain/ |
| D | BUILD.gn | 15 assert(defined(invoker.ar)) 16 assert(defined(invoker.cc)) 17 assert(defined(invoker.cxx)) 18 assert(defined(invoker.ld)) 20 ar = invoker.ar 21 cc = invoker.cc 22 cxx = invoker.cxx 23 ld = invoker.ld 25 if (!defined(invoker.asm)) { 28 asm = invoker.asm [all …]
|
| /arkcompiler/ets_runtime/test/ |
| D | test_helper.gni | 34 forward_variables_from(invoker, "*") 40 _module_out_path_ = invoker.module_out_path 79 _deps_ = invoker.deps 81 if (defined(invoker.is_module) && invoker.is_module) { 85 if (defined(invoker.is_commonjs) && invoker.is_commonjs) { 89 if (defined(invoker.is_merge) && invoker.is_merge) { 93 if (defined(invoker.is_json) && invoker.is_json) { 97 if (defined(invoker.timeout)) { 98 _timeout_ = invoker.timeout 159 if (defined(invoker.extra_modules)) { [all …]
|
| /arkcompiler/toolchain/build/toolchain/ark/ |
| D | ark_toolchain.gni | 26 forward_variables_from(invoker, 35 if (defined(invoker.toolchain_args)) { 36 forward_variables_from(invoker.toolchain_args, "*") 41 if (defined(invoker.shlib_extension) && invoker.shlib_extension != "") { 42 shlib_extension = invoker.shlib_extension
|
| /arkcompiler/toolchain/build/toolchain/mingw/ |
| D | BUILD.gn | 23 assert(defined(invoker.toolchain_root), 25 assert(defined(invoker.toolchain_args), 27 toolchain_args = invoker.toolchain_args 33 rebase_path("${invoker.toolchain_root}/bin", root_build_dir)
|
| /arkcompiler/runtime_core/tests/ |
| D | test_helper.gni | 24 forward_variables_from(invoker, "*") 27 _module_out_path_ = invoker.module_out_path
|
| /arkcompiler/toolchain/test/ |
| D | test_helper.gni | 31 forward_variables_from(invoker, "*") 34 _module_out_path_ = invoker.module_out_path
|
| /arkcompiler/runtime_core/runtime/ |
| D | BUILD.gn | 500 assert(defined(invoker.data_files), "data_files required!") 501 assert(defined(invoker.output_file), "output_file required!") 503 data_files = string_join(",", rebase_path(invoker.data_files, root_build_dir)) 511 inputs += invoker.data_files 513 outputs = [ invoker.output_file ]
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | throw.yaml | 769 …description: If no exception handler is found, the frame of invoker is restored. If such frame exi… 815 …description: If no exception handler is found, the frame of invoker is restored. If such frame exi… 863 …If no exception handler is found, the frame of invoker is restored. If such frame exists, the exce… 864 …exception handler is found, the frame of invoker is restored. If such frame exists, the exception … 909 …If no exception handler is found, the frame of invoker is restored. If such frame exists, the exce… 910 …exception handler is found, the frame of invoker is restored. If such frame exists, the exception … 1035 …If no exception handler is found, the frame of invoker is restored. If such frame exists, the exce… 1036 …exception handler is found, the frame of invoker is restored. If such frame exists, the exception …
|
| D | return.void.yaml | 24 …rom the current method, i.e. restore the frame of method invoker and return control to the invoker.
|
| D | return.64.yaml | 30 … Return from the current method, i.e. restore the frame of method invoker and return control to the 31 invoker. Return value should be in accumulator.
|
| D | return.yaml | 30 … Return from the current method, i.e. restore the frame of method invoker and return control to the 31 invoker. Return value should be in accumulator.
|
| D | return.obj.yaml | 41 … Return from the current method, i.e. restore the frame of method invoker and return control to the 42 invoker. Return value should be in accumulator.
|
| /arkcompiler/toolchain/build/config/sanitizers/ |
| D | sanitizers.gni | 275 forward_variables_from(invoker,
|