/arkcompiler/toolchain/build/toolchain/ |
D | gcc_link_wrapper.py | 19 def is_static_link(command): argument 20 if "-static" in command: 32 def update_crt(command): argument 33 for item in command: 35 index = command.index(item) 38 command[index] = new_crtbegin 39 return command 62 if is_static_link(args.command): 63 command = update_crt(args.command) 67 command = args.command [all …]
|
D | gcc_toolchain.gni | 154 command = "$cc" + " -MMD" + " -MF" + " $depfile" + " ${rebuild_string}" + 165 command = "$cxx" + " -MMD" + " -MF" + " $depfile" + " ${rebuild_string}" + 177 command = "$asm" + " -MMD" + " -MF" + " $depfile" + " ${rebuild_string}" + 189 command = "$ar" + " -X64" + " {{arflags}}" + " -r" + " -c" + " -s" + 194 command = "\"$ar\"" + " {{arflags}}" + " -r" + " -c" + " -s" + " -D" + 200 command = "rm -f {{output}}" + " && $command" 253 command = "$python_path" + " \"$solink_wrapper\"" + " $strip_switch" + 256 command = "$command" + " --libfile=\"$libfile\"" 258 command = "$command" + " -- $link_command" 309 command = "$ld" + " -shared" + " {{ldflags}}" + " ${extra_ldflags}" + [all …]
|
D | gcc_solink_wrapper.py | 62 for a in args.command: 73 result = subprocess.call(args.command, env=fast_env)
|
/arkcompiler/runtime_core/tests/cts-generator/generator/ |
D | command.rb | 18 def initialize(command, isa, test_name, definitions, predefined, output, skip_header) argument 29 @command = command 37 LOG.debug command 39 … @skip = command.key?(Generator::TEST_COMMAND_SKIP) ? command[Generator::TEST_COMMAND_SKIP] : false
|
D | single_test.rb | 20 def initialize(command, isa, definitions, predefined, skip_header) argument 21 super isa, command, definitions, predefined, skip_header 28 @command = command
|
D | test_case.rb | 22 … def initialize(command, current_case, instruction, definitions, predefined, template, skip_header) argument 23 super instruction, command, definitions, predefined, skip_header 25 LOG.debug "TestCase created with '#{command}' '#{current_case}' '#{instruction}'" 37 @command = command
|
D | parser.rb | 72 raw_test[Generator::TEST_COMMANDS].each do |command| 73 …command_has_only_key ||= command.key?(Generator::TEST_COMMAND_ONLY) && command[Generator::TEST_COM…
|
D | test.rb | 58 …command = Command.new raw_command, @isa, @test_name, @definitions, @predefined, @output, @skip_hea… 59 command.parse
|
D | test_base.rb | 18 def initialize(isa, command, definitions, predefined, skip_header) argument 20 @command = command
|
/arkcompiler/runtime_core/gn/build/toolchain/ |
D | BUILD.gn | 54 …command = "$cc -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_c}} ${extra_cppf… 63 …command = "$cxx -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} ${extra_cp… 72 …command = "$asm -MMD -MF $depfile {{defines}} {{include_dirs}} {{asmflags}} ${extra_asmflags} -c {… 80 command = "rm -f {{output}} && $ar rcs {{output}} {{inputs}}" 97 command = "$ld -shared {{ldflags}} ${extra_ldflags} -o $sofile $os_specific_option @$rspfile" 119 …command = "$ld {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{li… 127 command = "touch {{output}}" 132 command = "cp -af {{source}} {{output}}"
|
/arkcompiler/runtime_core/tests/checked/ |
D | README.md | 6 Each checker's command should start with special token (`'#!'` for panda assembly language, `//!` f… 9 Allowed multiple checkers in a single file. Each checker starts with command `CHECKER` and ends wit… 10 command token at the zero position. 12 Each command is a valid code in the `ruby` language. 24 run. Thus, `RUN_PAOC` command must be placed before `RUN` command. 29 …method, all following checks that require specific method will use method specified by this command
|
/arkcompiler/ets_frontend/test262/ |
D | README.md | 49 --hostArgs HOSTARGS command-line arguments to pass to eshost host 116 07-30 16:56:03.857383 D:>>> command: npm install | dir: /home/share/OpenHarmony2.0_20210604/o… 128 07-30 16:56:06.746184 D:>>> command: npm install | dir: test262/eshost 134 07-30 16:56:08.767037 D:>>> command: npm install | dir: test262/harness 136 07-30 16:56:11.836409 D:>>> command: git checkout -- . | dir: test262/data 137 07-30 16:56:12.012115 D:>>> command: git checkout 9ca13b12728b7e0089c7eb03fa2bd17f8abe297f | … 139 07-30 16:56:12.275768 D:>>> command: git checkout -- . | dir: test262/eshost 140 07-30 16:56:12.280134 D:>>> command: git apply ../eshost.patch | dir: test262/eshost 141 07-30 16:56:12.283263 D:>>> command: git checkout -- . | dir: test262/harness 142 07-30 16:56:12.288134 D:>>> command: git apply ../harness.patch | dir: test262/harness [all …]
|
D | utils.py | 72 def run_cmd(command): argument 73 cmd = Command(command)
|
/arkcompiler/ets_frontend/arkguard/scripts/ |
D | grammarTestScript.js | 9 const command = `node ./node_modules/ts-node/dist/bin.js ${filePath}`; 10 execSync(command);
|
/arkcompiler/ets_frontend/testTs/ |
D | README.md | 8 … and run the './build.sh --product-name hispark_taurus_standard --build-target ark_ts2abc' command. 9 …rkcompiler/ets_frontend/build' in the out file and run the 'npm install' command to set up the env…
|
/arkcompiler/runtime_core/tests/cts-generator/runner/ |
D | runner.rb | 77 def initialize(command, reporter) argument 78 @command = command
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
D | readme.md | 23 Run the command: `python entry.py` 26 Run the command: `python run.py`
|
/arkcompiler/ets_runtime/docs/ |
D | development-example.md | 12 1. Run the following command to compile ARK runtime: 18 2. Run the following command to compile the ARK frontend: 73 **NOTE**: In the preceding command, _your code path_ indicates the source code directory. 77 Run the following command to export the result to the **output** file: 124 1. Run the following command to compile ARK runtime: 130 2. Run the following command to compile the ARK frontend: 217 …name="p156151636161215"></a><a name="p156151636161215"></a>Specifies the command line parameters s… 296 Test command:
|
/arkcompiler/runtime_core/docs/ |
D | tracing.md | 44 1. Enable tracing by the command:
|
D | doxygen.config | 186 # style comments (thus requiring an explicit @brief command for a brief 195 # requiring an explicit \brief command for a brief description.) 236 # will allow you to put the command \sideeffect (or @sideeffect) in the 245 # will allow you to use the command class in the itcl::class meaning. 376 # \nosubgrouping command. 514 # \internal command is included. If the tag is set to NO then the documentation 658 # controlled using \showinitializer or \hideinitializer command in the 688 # popen()) the command command input-file, where command is the value of the 869 # command). 889 # \image command). [all …]
|
/arkcompiler/runtime_core/tests/cts-generator/ |
D | README.md | 34 This command will generate CTS tests using provided template file. Template is validated using sche… 78 This command will start all tests in `cts-generated` directory. Tests which have runner options `ig… 109 All test can be executed using `make cts-generated` command, test with `ignore` runner options will…
|
/arkcompiler/ets_frontend/test/scripts/performance_test/ |
D | readme.md | 10 input the command in cmd: python performance_entry.py 88 **command for building**
|
/arkcompiler/runtime_core/ |
D | README.md | 47 ├── runtime # ARK runtime command module. 49 ├── templates # Ruby templates and scripts used to process command line options, logg…
|
/arkcompiler/runtime_core/cmake/ |
D | README.md | 41 You may force fixes for clang-format issues, with the `make clang_force_format` command.
|
/arkcompiler/runtime_core/libpandabase/ |
D | README.md | 7 pandargs is header-only utility tool that helps to parse command line arguments. It supports severa… 46 - Argument name, is a name, which will appear in a command line. 143 Sample command line usage:
|