/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
D | test_reporter.rb | 36 output = @logger.string 37 unless output.empty? 39 puts output 73 def log_failed_compilation(output) argument 76 @logger.log 1, output unless output.empty? 79 def log_failed_quickening(output) argument 82 @logger.log 1, output unless output.empty? 85 def log_negative_passed_compilation(output) argument 88 @logger.log 1, output unless output.empty? 91 def log_failed_negative_compilation(output) argument [all …]
|
D | allure_reporter.rb | 104 def log_failed_compilation(output) argument 105 @output << "\n" << output 109 def log_negative_passed_compilation(output) argument 110 @output << "\n" << output 114 def log_failed_negative_compilation(output) argument 116 @output << "\n" << output 119 def log_compilation_passed(output) argument 121 @output << "\n" << output 124 def log_run_negative_failure(output, status) argument 125 @output << "\n" << output [all …]
|
D | jtr_reporter.rb | 99 def log_failed_compilation(output) argument 101 @output << "\n" << output 104 def log_negative_passed_compilation(output) argument 106 @output << "\n" << output 109 def log_failed_negative_compilation(output) argument 111 @output << "\n" << output 114 def log_compilation_passed(output) argument 116 @output << "\n" << output 119 def log_run_negative_failure(output, status) argument 121 @output << "\n" << output [all …]
|
D | base_test_reporter.rb | 53 def log_failed_compilation(output) argument 57 def log_negative_passed_compilation(output) argument 61 def log_failed_negative_compilation(output) argument 65 def log_compilation_passed(output) argument 69 def log_run_negative_failure(output, status) argument 73 def log_verifier_negative_failure(output, status) argument 77 def log_run_failure(output, status, core) argument 81 def log_verifier_failure(output, status, core) argument 85 def log_passed(output, status) argument
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | assemblyDumper.ts | 49 private output: string; property in AssemblyDumper 55 this.output = ""; 65 this.output += ".function any " + this.pg.internalName + "("; 67 this.output += "any a" + i.toString(); 69 this.output += ", "; 72 this.output += ") {\n"; 84 this.output += "\t"; 86 … this.output += node.getMnemonic() + " v" + (<VReg>node.operands[0]).num + ", a" + paramIdx + "\n"; 99 this.output += "\t"; 100 this.output += node.getMnemonic() + " "; [all …]
|
/arkcompiler/runtime_core/tests/cts-generator/runner/ |
D | result.rb | 29 def update_failed_compilation(output, file) argument 34 @reporter.log_failed_compilation output 37 def update_failed_quickening(output, file) argument 42 @reporter.log_failed_quickening output 45 def update_negative_passed_compilation(output, file) argument 50 @reporter.log_negative_passed_compilation output 53 def update_failed_negative_compilation(output, file) argument 58 @reporter.log_failed_negative_compilation output 61 def update_compilation_passed(output, file) argument 66 @reporter.log_compilation_passed output [all …]
|
D | single_test_runner.rb | 142 output, status, _core = run_pandasm 146 @result.update_negative_passed_compilation output, @pa_file 149 @result.update_compilation_passed output, @pa_file 153 @result.update_failed_negative_compilation output, @pa_file 155 @result.update_failed_compilation output, @pa_file 159 @result.update_failed_compilation output, @pa_file 169 output, status, core = run_verifier 173 @result.update_verifier_negative_failure output, status, @pa_file 176 @result.update_passed output, status, @pa_file 180 @result.update_passed output, status, @pa_file [all …]
|
D | runner.rb | 82 def dump_output(t, output_err, output) argument 88 output << output_err.read_nonblock(2048) 93 output << "\nUnexpected exception when reading from pipe: #{e.class.name}, #{e.message}" 107 output = '' 108 finished = dump_output t, output_err, output 114 output << "\nProcess hangs for #{$TIMEOUT}s '#{@command}'" \ 122 return output.strip, ERROR_TIMEOUT, false 128 output << t.value.inspect 131 output << t.value.inspect 135 [output.strip, exitstatus, t.value.coredump?]
|
/arkcompiler/ets_frontend/legacy_bin/ |
D | BUILD.gn | 19 output = "js_linux/${source}" 26 output = "js_win/${source}" 33 output = "js_mac/${source}" 40 output = "js_linux/${source}" 47 output = "js_win/${source}" 54 output = "js_mac/${source}" 61 output = "js_linux/${source}" 68 output = "js_win/${source}" 75 output = "js_mac/${source}" 82 output = "js_linux/${source}" [all …]
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | moduleMemberWithoutTypeAnnotation2.ts | 25 Alert(output: string): void; 30 export function Alert(output: string) { 34 diagnosticWriter.Alert(output); 35 AssertType(diagnosticWriter.Alert(output), "any"); 37 AssertType(output, "string");
|
D | parserModule1.ts | 24 Alert(output: string): void; 31 export function Alert(output: string) { 35 diagnosticWriter.Alert(output); 36 AssertType(diagnosticWriter.Alert(output), "void"); 38 AssertType(output, "string");
|
/arkcompiler/runtime_core/libpandabase/templates/ |
D | logger_gen.rb | 50 output = options.output ? File.open(File.expand_path(options.output), 'w') : $stdout 51 output.write(data.to_yaml) 52 output.close
|
/arkcompiler/runtime_core/gn/build/toolchain/ |
D | BUILD.gn | 53 depfile = "{{output}}.d" 54 …{{defines}} {{include_dirs}} {{cflags}} {{cflags_c}} ${extra_cppflags} -c {{source}} -o {{output}}" 56 description = "CC {{output}}" 62 depfile = "{{output}}.d" 63 …{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} ${extra_cppflags} -c {{source}} -o {{output}}" 65 description = "CXX {{output}}" 71 depfile = "{{output}}.d" 72 …F $depfile {{defines}} {{include_dirs}} {{asmflags}} ${extra_asmflags} -c {{source}} -o {{output}}" 74 description = "ASM {{output}}" 80 command = "rm -f {{output}} && $ar rcs {{output}} {{inputs}}" [all …]
|
/arkcompiler/runtime_core/gn/build/ |
D | cmake_configure_file.py | 74 output = ''.join(out_lines) 80 if not os.path.exists(args.output) or read(args.output) != output: 81 with open(args.output, 'w') as file: 82 file.write(output) 83 os.chmod(args.output, os.stat(args.input).st_mode & 0o777)
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | main.cpp | 23 …(const panda::ts2abc::Options &options, const panda::PandArgParser &argParser, std::string &output, in Preprocess() argument 29 output = options.GetTailArg2(); in Preprocess() 30 if (input.empty() || output.empty()) { in Preprocess() 42 output = options.GetTailArg1(); in Preprocess() 43 if (output.empty()) { in Preprocess() 56 std::string output = options.GetTailArg2(); in HandleNpmEntries() local 57 if (options.GetCompileByPipeArg() || input.empty() || output.empty()) { in HandleNpmEntries() 69 if (!panda::ts2abc::CompileNpmEntries(input, output)) { in HandleNpmEntries() 128 std::string output; in main() local 131 if (Preprocess(options, argParser, output, data, usage) == panda::ts2abc::RETURN_FAILED) { in main() [all …]
|
/arkcompiler/runtime_core/isa/ |
D | combine.rb | 56 output = options.output ? File.open(File.expand_path(options.output), 'w') : $stdout 57 output.write(data.to_yaml) 58 output.close
|
D | gen.rb | 94 output = options.output ? File.open(File.expand_path(options.output), 'w') : $stdout 97 output.write(t.result(create_sandbox)) 98 output.close
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/tests/ |
D | stringarr_test.cpp | 40 std::string output = ParseString(input); variable 41 EXPECT_EQ(output, expected); 48 std::string output = ParseString(input); variable 49 EXPECT_EQ(output, expected);
|
/arkcompiler/toolchain/tooling/base/ |
D | pt_base64.cpp | 44 std::pair<std::size_t, bool> PtBase64::Decode(void *output, const char *input, std::size_t len) in Decode() argument 51 char *dest = static_cast<char *>(output); in Decode() 81 size_t decodedLen = dest - static_cast<char *>(output); in Decode() 91 size_t PtBase64::Encode(char *output, const void *input, std::size_t len) in Encode() argument 98 char *dest = output; in Encode() 126 return dest - output; in Encode()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | protobufSnapshotGenerator.cpp | 28 std::fstream output = panda::es2panda::util::Helpers::FileStream<std::fstream>( in GenerateSnapshot() local 31 if (!output) { in GenerateSnapshot() 35 protoProgram.SerializeToOstream(&output); in GenerateSnapshot() 36 output.close(); in GenerateSnapshot() 89 std::fstream output = panda::es2panda::util::Helpers::FileStream<std::fstream>( in UpdateCacheFile() local 92 if (!output) { in UpdateCacheFile() 96 protoCache.SerializeToOstream(&output); in UpdateCacheFile() 97 output.close(); in UpdateCacheFile()
|
/arkcompiler/runtime_core/templates/ |
D | merge.rb | 99 output = options.output ? File.open(File.expand_path(options.output), 'w') : $stdout 101 output.write(output_yaml) 102 output.close
|
/arkcompiler/runtime_core/tests/checked/ |
D | checker.rb | 190 output, status = Open3.capture2e($curr_cmd.to_s, chdir: @cwd.to_s) 193 puts output 198 puts output 202 log.debug output 213 output = @aot_file 231 output = value 235 …anda-files #{inputs} --events-output=csv --compiler-dump #{options} #{aot_output_option} #{output}" 242 output, status = Open3.capture2e($curr_cmd.to_s, chdir: @cwd.to_s) 245 puts output 250 puts output [all …]
|
/arkcompiler/runtime_core/tests/cts-generator/generator/ |
D | command.rb | 18 def initialize(command, isa, test_name, definitions, predefined, output, skip_header) argument 34 @output = output 101 output = test_case.create_single_test_case bugids, ignore, tags 102 test_file.puts output
|
/arkcompiler/toolchain/build/toolchain/ |
D | toolchain.gni | 83 stamp_description = "STAMP {{output}}" 84 copy_description = "COPY {{source}} {{output}}" 88 stamp_command = "cmd /c type nul > \"{{output}}\"" 90 "$python_path $_tool_wrapper_path recursive-mirror {{source}} {{output}}" 92 stamp_command = "touch {{output}}" 93 …copy_command = "ln -f {{source}} {{output}} 2>/dev/null || (rm -rf {{output}} && cp -af {{source}}…
|
/arkcompiler/toolchain/build/templates/cxx/ |
D | prebuilt.gni | 19 if (defined(invoker.output)) { 20 _copy_output = "${target_out_dir}/${invoker.output}" 88 if (defined(invoker.output)) { 89 _copy_output = "${target_out_dir}/${invoker.output}" 164 if (defined(invoker.output)) { 165 _copy_output = "${target_out_dir}/${invoker.output}" 200 if (defined(invoker.output)) { 201 _copy_output = "${target_out_dir}/${invoker.output}"
|