/arkcompiler/ets_runtime/test/moduletest/stringsplit/ |
H A D | stringsplit.js | 17 * @tc.name:split 18 * @tc.desc:test String.split 24 ("X").split("00QP", -32297n); 29 // Test String.prototype.split and cache 34 let res1 = shortString.split(''); 35 let res2 = shortString.split(''); 39 let res3 = longString.split(''); 40 let res4 = longString.split(''); 44 let res5 = shortTwoBytesString.split(''); 45 let res6 = shortTwoBytesString.split(''); [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | live_registers.cpp | 45 for (auto split = interval; !interval->IsPhysical() && split != nullptr; split = split->GetSibling()) { in GetSibling() 46 if (split->HasReg()) { 47 minLn = std::min(minLn, split->GetBegin()); 48 maxLn = std::max(maxLn, split->GetEnd()); 49 destination->push_back(split); 115 auto split = queue.front(); in BuildIntervalsTree() local 117 if (split in BuildIntervalsTree() [all...] |
/arkcompiler/ets_runtime/test/moduletest/string/ |
H A D | string.js | 104 var b = a.split(""); 105 var c = a.split("1"); 111 var b1 = a1.split(); 112 var c1 = a1.split(""); 113 var d1 = a1.split(" "); 114 var e1 = a1.split("_"); 115 var f1 = a1.split("_", 2); 116 var g1 = a2.split("尼", 3); 117 var r1 = a3.split("尼", 44); 118 var k1 = a3.split("尼", [all...] |
/arkcompiler/toolchain/build/templates/cxx/ |
H A 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] 110 target_name = dep.split(":")[1] 115 target_name = dep.split(":")[1] 120 target_name = dep.split(":")[1] 125 target_name = dep.split(":")[1] 130 target_name = dep.split(" [all...] |
/arkcompiler/toolchain/test/autotest/aw/ |
H A D | fport.py | 67 for fport_item in [item for item in list_fport_out.split('[Forward]') if item != '\r\n']: 68 un_fport_command = (['hdc', 'fport', 'rm'] + [fport_item.split(' ')[1].split(' ')[0]] + 69 [fport_item.split(' ')[1].split(' ')[1]])
|
/arkcompiler/runtime_core/compiler/tests/ |
H A 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 in TEST_F() local [all...] |
H A D | split_resolver_new_test.cpp | 153 auto split = param_interval->SplitAt(add_interval->GetBegin() - 1, graph->GetAllocator()); in HWTEST_F() 154 split->SetLocation(Location::MakeStackSlot(SLOT_AT_ADD)); in HWTEST_F() 155 split = split->SplitAt(mul_interval->GetBegin() - 1, graph->GetAllocator()); in HWTEST_F() 156 split->SetReg(REG_AT_MUL); in HWTEST_F() 265 auto split = param_interval->SplitAt(mul_interval->GetBegin() - 1, graph->GetAllocator()); in HWTEST_F() 266 split->SetLocation(Location::MakeStackSlot(SLOT_AT_MUL)); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/templates/ |
H A 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/templates/ |
H A 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/static_core/tests/tests-u-runner/runner/ |
H A D | descriptor.py | 57 includes += [incl.strip() for incl in match.group("includes").split(",")] if match else [] 60 includes += [incl.strip() for incl in match.group("includes").split("-")][1:] if match else [] 66 result["flags"] = [flag.strip() for flag in match.group("flags").split(",")] 79 result["issues"] = [issue.strip() for issue in match.group("issues").split(",")]
|
/arkcompiler/ets_runtime/test/moduletest/loadicbyvalue/ |
H A D | loadicbyvalue.js | 67 strC = str.split("C"); 70 strC = lineStr.split("C"); 76 strC = strObj.split("C");
|
/arkcompiler/runtime_core/gn/build/ |
H A 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/runtime_core/static_core/gn/build/ |
H A D | cmake_configure_file.py | 39 key, val = value.split('=', 1) 59 var_val = in_line.split(' ', 1)[1] 60 var_val_split = var_val.split(' ', 1)
|
/arkcompiler/toolchain/build/config/mac/ |
H A D | sdk_info.py | 31 version = version.split('.') 52 settings_xcode['xcode_version'] = format_version(lines[0].split()[-1]) 54 settings_xcode['xcode_build'] = lines[-1].split()[-1]
|
/arkcompiler/toolchain/build/scripts/ |
H A D | check_mac_system_and_cpu.py | 22 res = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, 43 host_cpu = res[2].strip().decode().split("brand_string:")[-1]
|
/arkcompiler/ets_frontend/testTs/ |
H A 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(o [all...] |
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | life_intervals_test.cpp | 86 auto split = interval->SplitAt(4U, GetAllocator()); in TEST_F() local 88 CheckSiblings({interval, split}); in TEST_F() 90 CheckRanges(split, {}); in TEST_F() 96 auto split = interval->SplitAt(6U, GetAllocator()); in TEST_F() local 98 CheckSiblings({interval, split}); in TEST_F() 100 CheckRanges(split, {{8U, 10U}}); in TEST_F() 106 auto split = interval->SplitAt(6U, GetAllocator()); in TEST_F() local 108 CheckSiblings({interval, split}); in TEST_F() 110 CheckRanges(split, {{6U, 10U}}); in TEST_F() 116 auto split in TEST_F() local [all...] |
/arkcompiler/ets_runtime/test/ |
H A D | run_ts_test262.py | 99 path = abc_file_path_temp.split('.abc')[0] 101 '--aot-file=' + path, '--entry-point=' + abc_file_path_temp.split('/')[-1].split('.abc')[0], 110 '--entry-point=' + abc_file_path_temp.split('/')[-1].split('.abc')[0], 133 paths = abc_file_path_temp.split('.abc')[0]
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
H A D | validation.rb | 63 data = line.split(':', 2).map(&:strip) 68 Hash[methods.map { |m| [m.name.split('::')[1].to_sym, m] } ]
|
/arkcompiler/runtime_core/static_core/libpandabase/events/ |
H A D | events.rb | 19 self.split('_').collect(&:capitalize).join 23 self.split('_').inject([]){ |buffer,e| buffer.push(buffer.empty? ? e : e.capitalize) }.join
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
H A D | test_result.py | 268 f.getvalue().split("\n") if line] 284 f.getvalue().split("\n") if line] 321 f.getvalue().split("\n") if line]
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | compilation_driver.cpp | 81 std::string split; in SplitString() local 82 while (getline(sstr, split, ch)) { in SplitString() 83 vec.emplace_back(split); in SplitString()
|
/arkcompiler/toolchain/tooling/client/tcpServer/test/ |
H A D | js_test_base.py | 60 out_str = str(ret).split('\\n') 105 out_str = str(ret).split('\\n') 107 out_str = out_str[0].split('\\r')[0]
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/generator/ |
H A 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/runtime_core/tests/cts-generator/generator/ |
H A 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}" }
|