Searched full:invoker (Results 1 – 23 of 23) sorted by relevance
| /arkcompiler/toolchain/build/templates/cxx/ |
| D | cxx.gni | 17 if (defined(invoker.subsystem_name) && defined(invoker.part_name)) { 18 subsystem_name = invoker.subsystem_name 19 part_name = invoker.part_name 20 } else if (defined(invoker.subsystem_name)) { 21 subsystem_name = invoker.subsystem_name 30 if (defined(invoker.unit_test) && invoker.unit_test) { 31 output_dir = invoker.test_output_dir 37 forward_variables_from(invoker, 53 if (defined(invoker.configs)) { 54 configs += invoker.configs [all …]
|
| D | prebuilt.gni | 17 assert(defined(invoker.source), "source must be defined for ${target_name}.") 19 if (defined(invoker.output)) { 20 _copy_output = "${target_out_dir}/${invoker.output}" 22 _copy_output = "${target_out_dir}/${invoker.source}" 25 if (!defined(invoker.deps)) { 26 invoker.deps = [] 29 if (!defined(invoker.stable)) { 30 invoker.stable = false 34 foreach(dep, invoker.deps) { 50 stable = invoker.stable [all …]
|
| /arkcompiler/runtime_core/ |
| D | ark_config.gni | 72 assert(defined(invoker.data_file), "data_file is required!") 73 assert(defined(invoker.template_file), "template_file is required!") 74 assert(defined(invoker.output_file), "output_file is required!") 77 if (defined(invoker.requires)) { 78 requires = string_join(",", rebase_path(invoker.requires, root_build_dir)) 82 if (defined(invoker.extra_dependencies)) { 83 extra_dependencies += invoker.extra_dependencies 87 if (defined(invoker.extra_argv)) { 88 positional_argv += invoker.extra_argv 92 rebase_path(invoker.template_file, root_build_dir), [all …]
|
| /arkcompiler/runtime_core/gn/ark/runtime_core/ |
| D | ark_config.gni | 77 assert(defined(invoker.data_file), "data_file is required!") 78 assert(defined(invoker.template_file), "template_file is required!") 79 assert(defined(invoker.output_file), "output_file is required!") 82 if (defined(invoker.requires)) { 83 requires = string_join(",", rebase_path(invoker.requires, root_build_dir)) 87 if (defined(invoker.extra_dependencies)) { 88 extra_dependencies += invoker.extra_dependencies 92 if (defined(invoker.extra_argv)) { 93 positional_argv += invoker.extra_argv 97 rebase_path(invoker.template_file, root_build_dir), [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/toolchain/build/toolchain/ |
| D | gcc_toolchain.gni | 27 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value") 28 assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value") 29 assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value") 30 assert(defined(invoker.ld), "gcc_toolchain() must specify a \"ld\" value") 34 if (defined(invoker.rebuild_define)) { 35 rebuild_string = "-D" + invoker.rebuild_define 41 # "invoker.toolchain_args.foo", so make a temporary to hold the toolchain 43 assert(defined(invoker.toolchain_args), 45 invoker_toolchain_args = invoker.toolchain_args 54 # Populate toolchain args from the invoker. [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.extension)) { [all …]
|
| /arkcompiler/toolchain/build/ |
| D | test.gni | 19 assert(defined(invoker.test_type), "test_type is required.") 20 assert(defined(invoker.module_out_path)) 23 if (defined(invoker.deps)) { 24 _deps += invoker.deps 28 "$root_out_dir/tests/${invoker.test_type}/${invoker.module_out_path}" 31 if (defined(invoker.fuzz_config_file)) { 32 fuzz_config_file = invoker.fuzz_config_file 44 _has_sources = defined(invoker.sources) && invoker.sources != [] 47 write_file(_c_sources_file, rebase_path(invoker.sources, root_build_dir)) 51 forward_variables_from(invoker, [all …]
|
| /arkcompiler/ets_runtime/test/ |
| D | test_helper.gni | 31 forward_variables_from(invoker, "*") 34 _module_out_path_ = invoker.module_out_path 129 _deps_ = invoker.deps 131 if (defined(invoker.is_module) && invoker.is_module) { 135 if (defined(invoker.is_commonjs) && invoker.is_commonjs) { 139 if (defined(invoker.is_merge) && invoker.is_merge) { 143 if (defined(invoker.is_json) && invoker.is_json) { 147 if (defined(invoker.timeout)) { 148 _timeout_ = invoker.timeout 209 if (defined(invoker.extra_modules)) { [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/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/toolchain/build/toolchain/ark/ |
| D | ark_toolchain.gni | 24 rebase_path(invoker.sysroot + "/" + invoker.lib_dir, root_build_dir) 29 if (invoker.target_name == "ark_clang_arm") { 31 } else if (invoker.target_name == "ark_clang_arm64") { 33 } else if (invoker.target_name == "ark_clang_x86_64") { 55 if (defined(invoker.toolchain_args)) { 56 forward_variables_from(invoker.toolchain_args, "*") 61 if (defined(invoker.shlib_extension) && invoker.shlib_extension != "") { 62 shlib_extension = invoker.shlib_extension
|
| /arkcompiler/toolchain/build/toolchain/mingw/ |
| D | BUILD.gn | 24 assert(defined(invoker.toolchain_root), 26 assert(defined(invoker.toolchain_args), 28 toolchain_args = invoker.toolchain_args 31 rebase_path("${invoker.toolchain_root}/bin", root_build_dir)
|
| /arkcompiler/toolchain/build/toolchain/aosp/ |
| D | BUILD.gn | 24 rebase_path(invoker.sysroot + "/" + invoker.lib_dir, root_build_dir) 45 if (defined(invoker.toolchain_args)) { 46 forward_variables_from(invoker.toolchain_args, "*")
|
| /arkcompiler/runtime_core/tests/ |
| D | test_helper.gni | 24 forward_variables_from(invoker, "*") 27 _module_out_path_ = invoker.module_out_path
|
| /arkcompiler/toolchain/build/config/ |
| D | BUILDCONFIG.gn | 187 forward_variables_from(invoker, "*", [ "no_default_deps" ]) 191 if (!defined(invoker.no_default_deps) || !invoker.no_default_deps) {
|
| /arkcompiler/toolchain/test/ |
| D | test_helper.gni | 31 forward_variables_from(invoker, "*") 34 _module_out_path_ = invoker.module_out_path
|
| /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.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.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.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/third_party_gn/musl/ |
| D | musl_template.gni | 37 forward_variables_from(invoker, [ "*" ])
|