Home
last modified time | relevance | path

Searched full:split (Results 1 – 25 of 123) sorted by relevance

12345

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DarrayAugment.ts22 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/
Dlife_intervals_test.cpp72 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/
Dcommon.rb53 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/
Dstatic-analyzer-gc-func-list-gen.puactivity18 split
21 split again
32 end split
/arkcompiler/toolchain/build/templates/cxx/
Dexternal_deps_handler.py74 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/
Drun_testTs.py74 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/
Dsplit_resolver.cpp73 // 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/
Drun_ts_test262.py98 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/
Dcmake_configure_file.py38 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/
DbuiltinsMap.ts.erb20 % 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/
Dfile_format_version.h.erb26 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/
Dspec.rb91 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/
Dir_builder.md20 …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()
Dreg_alloc_graph_coloring_doc.md26 …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/
Dperformance_build.py131 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/
Dtest_base.rb37 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/
Dstring.js57 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/
Dtest262util.py128 '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/
Dconst_array_test.pa18 #! CHECKER Split ConstArray
38 #! CHECKER Split ConstArray AOT
/arkcompiler/runtime_core/tests/cts-generator/runner/
Drunner.rb66 string.split(':')
68 .flat_map { |s| s.split(',').map(&:strip) }
/arkcompiler/runtime_core/isa/
Disapi.rb49 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/
Drun_benchmark.py59 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/
DReservedNameGenerator.ts88 let charArr: string[] = originName.split('');
90 let binaryArr: string = this.mWordIndex.toString(BINARY_RADIX).split('').reverse().join('');
/arkcompiler/ets_runtime/test/aottest/exception_case2/
Dexception_case2.js24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case3/
Dexception_case3.js24 let array = stack.split('\n')

12345