| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
| D | arrayAugment.ts | 22 split: (parts: number) => T[][]; 30 let y = x.split(4); 32 AssertType(x.split(4), "string[][]"); 33 AssertType(x.split, "(number) => string[][]");
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | life_intervals_test.cpp | 72 auto split = interval->SplitAt(4, GetAllocator()); in TEST_F() local 74 CheckSiblings({interval, split}); in TEST_F() 76 CheckRanges(split, {}); in TEST_F() 82 auto split = interval->SplitAt(6, GetAllocator()); in TEST_F() local 84 CheckSiblings({interval, split}); in TEST_F() 86 CheckRanges(split, {{8, 10}}); in TEST_F() 92 auto split = interval->SplitAt(6, GetAllocator()); in TEST_F() local 94 CheckSiblings({interval, split}); in TEST_F() 96 CheckRanges(split, {{6, 10}}); in TEST_F() 102 auto split = interval->SplitAt(8, GetAllocator()); in TEST_F() local [all …]
|
| /arkcompiler/runtime_core/templates/ |
| D | common.rb | 53 n = name.split(Regexp.union(['-', '.'])).map(&:capitalize).join 90 n = "#{lang}.#{name}".split(Regexp.union(['-', '.'])).map(&:capitalize).join 117 split = s.split(k); 118 for i in 1..split.length() - 1 119 ret += v + ' + ' + Common::to_raw(split[i])+ ' + ' 138 'Event' + name.split('-').map(&:capitalize).join
|
| /arkcompiler/runtime_core/docs/diagrams/ |
| D | static-analyzer-gc-func-list-gen.puactivity | 18 split 21 split again 32 end split
|
| /arkcompiler/toolchain/build/templates/cxx/ |
| D | external_deps_handler.py | 74 inner_kit_parts = inner_kit["name"].split(":") 93 target_name = dep.split(":")[1] 97 target_name = dep.split(":")[1] 101 target_name = dep.split(":")[1] 105 target_name = dep.split(":")[1]
|
| /arkcompiler/ets_frontend/testTs/ |
| D | run_testTs.py | 74 path_list = file.split(os.sep) 80 ts_list = temp_out_file_path.split(os.sep) 83 path_list = out_file_path.split(os.sep) 165 out_list = out_content.split('}\n{') 168 out_list.append(''.join(out_content.split('\n'))) 175 out_do = ''.join(out_list[i].split('\n')).strip(' ') + '}' 177 out_do = '{' + ''.join(out_list[i].split('\n')).strip(' ') 182 out_list[i].split('\n')).strip(' ') + 195 path_list = file.split(os.sep) 201 path_list = out_path.split(os.sep)
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | split_resolver.cpp | 73 // PHI and its inputs can be considered as one interval, which was split, in ProcessBlock() 74 // so that the logic is equivalent to the logic of connecting split intervals in ProcessBlock() 116 …// Find sibling at the 'end - LIFE_NUMBER_GAP' position to connect siblings that were split at the… in ConnectSpiltFromPredBlock() 124 …COMPILER_LOG(DEBUG, SPLIT_RESOLVER) << "Resolve split move for inst v" << src_interval->GetInst()-… in ConnectSpiltFromPredBlock() 159 // moves in case when an interval was split after last basic block's instruction and then in CreateSpillFillForSplitMove() 166 // <Split 2's interval and spill to stack slot s0> in CreateSpillFillForSplitMove()
|
| /arkcompiler/ets_runtime/test/ |
| D | run_ts_test262.py | 98 path = abc_file_path_temp.split('.abc')[0] 100 … '--aot-file=' + path, '--entry-point=' + abc_file_path_temp.split('/')[-1].split('.abc')[0], 109 '--entry-point=' + abc_file_path_temp.split('/')[-1].split('.abc')[0], 132 paths = abc_file_path_temp.split('.abc')[0]
|
| /arkcompiler/runtime_core/gn/build/ |
| D | cmake_configure_file.py | 38 key, val = value.split('=', 1) 58 var_val = in_line.split(' ', 1)[1] 59 var_val_split = var_val.split(' ', 1)
|
| /arkcompiler/ets_frontend/ts2panda/templates/ |
| D | builtinsMap.ts.erb | 20 % args = sig.split(/,?\s+/) 35 % mnemonic = insn.mnemonic.split('.') 61 % args = sig.split(/,?\s+/) 67 case "<%= builtin.sig.split(' ')[0]%>":
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | file_format_version.h.erb | 26 constexpr std::array<uint8_t, File::VERSION_SIZE> version {<%= Panda::version.split('.').join(', ')… 27 constexpr std::array<uint8_t, File::VERSION_SIZE> minVersion {<%= Panda::min_version.split('.').joi…
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
| D | spec.rb | 91 grp['description_tests'] = split(grp['description']).map do |da| 116 ntg['description'] && split(ntg['description']).each do |ntda| 159 # split long-text description into array of assertions 160 def split(description) # rubocop:disable Metrics method in Spec 163 description.split(/\./).each do |p| 251 test_group['description'] && split(test_group['description']).each do |tda|
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | ir_builder.md | 20 …type as well and if one constant is used in integer and float operations, it must be split into two 66 1. Split constants: for all constants that are used in instructions with different types, split con… 119 const.split()
|
| D | reg_alloc_graph_coloring_doc.md | 26 …for node. And input parameters is marked for split if it has intersection with call-site. They wil… 55 Finally, if node was marked to split, real split on corresponding interval is performed. All nodes …
|
| /arkcompiler/ets_frontend/test/scripts/performance_test/ |
| D | performance_build.py | 131 subprocess.Popen((self.config.cmd_prefix + " clean --no-daemon").split(" "), 162 p = subprocess.Popen((self.config.cmd_prefix + cmd_suffix).split(" "), 176 cost_time = self.get_millisecond(log_str.split(' after ')[1]) 179 cost_time = self.get_millisecond(log_str.split(' in ')[1]) 199 res = time_string.split(" min ") 206 res = target_str.split(" s ") 213 res = target_str.split(" ms") 322 first_line_res = first_line.replace("\n", "").split(",")
|
| /arkcompiler/runtime_core/tests/cts-generator/generator/ |
| D | test_base.rb | 37 content.puts [isa].to_yaml.split("\n").map { |line| '#%s' % line }.join("\n") 61 description.split("\n").each {|t| content.puts "\# #{t}" }
|
| /arkcompiler/ets_runtime/test/perform/string/ |
| D | string.js | 57 str.split(" ", 3); 61 print("string split number of input parameters is 2 : " + time3); 68 str.split(" "); 72 print("string split number of input parameters is 1 : " + time3); 80 str.split(re); 84 print("string split into regexp.split : " + time3);
|
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test262util.py | 128 'includes').split(','))) if match else [] 132 'includes').split('-')))[1:] if match else [] 138 match.group('flags').split(','))) if match else []
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | const_array_test.pa | 18 #! CHECKER Split ConstArray 38 #! CHECKER Split ConstArray AOT
|
| /arkcompiler/runtime_core/tests/cts-generator/runner/ |
| D | runner.rb | 66 string.split(':') 68 .flat_map { |s| s.split(',').map(&:strip) }
|
| /arkcompiler/runtime_core/isa/ |
| D | isapi.rb | 49 operand_parts = sig.split(':') 98 sig.split(' ')[0] 103 mnemonic.split('.')[0] 157 operands = operands.split(', ') 303 bits = pretty.gsub(/[a-z]/, '').split('_').map(&:to_i).sum 316 name.sub('pref_', '').sub('op_', '').split('_').each_slice(2).map do |name, width|
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/ |
| D | run_benchmark.py | 59 for stdout_line in stdout.decode('ascii').split("\n"): 62 key, value = stdout_line.split(":")[:2] 158 c2p_options += args.compiler_options.split(",")
|
| /arkcompiler/ets_frontend/arkguard/src/generator/ |
| D | ReservedNameGenerator.ts | 88 let charArr: string[] = originName.split(''); 90 let binaryArr: string = this.mWordIndex.toString(BINARY_RADIX).split('').reverse().join('');
|
| /arkcompiler/ets_runtime/test/aottest/exception_case2/ |
| D | exception_case2.js | 24 let array = stack.split('\n')
|
| /arkcompiler/ets_runtime/test/aottest/exception_case3/ |
| D | exception_case3.js | 24 let array = stack.split('\n')
|