Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 220) sorted by relevance

123456789

/arkcompiler/ets_runtime/test/moduletest/stringsplit/
Dstringsplit.js24 ("X").split("00QP", -32297n);
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('');
49 let res7 = longTwoBytesString.split('');
50 let res8 = longTwoBytesString.split('');
54 let res9 = shortString.split('a');
[all …]
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
Dlive_registers.cpp45 …for (auto split = interval; !interval->IsPhysical() && split != nullptr; split = split->GetSibling… in CopyIntervals() local
46 if (split->HasReg()) { in CopyIntervals()
47 minLn = std::min(minLn, split->GetBegin()); in CopyIntervals()
48 maxLn = std::max(maxLn, split->GetEnd()); in CopyIntervals()
49 destination->push_back(split); in CopyIntervals()
115 auto split = queue.front(); in BuildIntervalsTree() local
117 if (split->end - split->begin <= 0) { in BuildIntervalsTree()
121 auto midpoint = split->min + (split->max - split->min) / 2U; in BuildIntervalsTree()
125 …auto leftMidpoint = PartitionLeftSplit(split->begin, split->end, midpoint, &leftMinLn, &leftMaxLn); in BuildIntervalsTree()
129 …auto rightMidpoint = PartitionRightSplit(leftMidpoint, split->end, midpoint, &rightMinLn, &rightMa… in BuildIntervalsTree()
[all …]
/arkcompiler/ets_runtime/test/moduletest/string/
Dstring.js104 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("尼", 0);
[all …]
/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]
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(":")[1]
[all …]
/arkcompiler/toolchain/test/autotest/aw/
Dfport.py52 for fport_item in [item for item in list_fport_out.split('[Forward]') if item != '\r\n']:
53 … un_fport_command = (['hdc', 'fport', 'rm'] + [fport_item.split(' ')[1].split(' ')[0]] +
54 [fport_item.split(' ')[1].split(' ')[1]])
/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/static_core/compiler/tests/
Dlife_intervals_test.cpp86 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 = interval->SplitAt(8U, GetAllocator()); in TEST_F() local
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_critical_edge.cpp53 CriticalEdge *split = memPool->New<CriticalEdge>(f, *memPool); in PhaseRun() local
55 split->CollectCriticalEdges(); in PhaseRun()
56 split->SplitCriticalEdges(); in PhaseRun()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Ddescriptor.py57 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/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_alignment.cpp202 bool split; in MarkShortBranchSplit() local
204 split = false; in MarkShortBranchSplit()
206 for (auto *bb = aarFunc->GetFirstBB(); bb != nullptr && !split; bb = bb->GetNext()) { in MarkShortBranchSplit()
207 … for (auto *insn = bb->GetLastInsn(); insn != nullptr && !split; insn = insn->GetPrev()) { in MarkShortBranchSplit()
223 split = true; in MarkShortBranchSplit()
225 insn->SetNeedSplit(split); in MarkShortBranchSplit()
228 } while (split); in MarkShortBranchSplit()
/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/static_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/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/ets2panda/linter/lib/utils/functions/
DPathHelper.ts20 for (const pathDir of npath.dirname(path).split(npath.sep)) {
33 pathComps = npath.dirname(npath.normalize(srcFile.fileName)).split(npath.sep);
/arkcompiler/ets_runtime/test/moduletest/loadicbyvalue/
Dloadicbyvalue.js67 strC = str.split("C");
70 strC = lineStr.split("C");
76 strC = strObj.split("C");
/arkcompiler/toolchain/build/config/mac/
Dsdk_info.py40 version = version.split('.')
61 settings_xcode['xcode_version'] = format_version(lines[0].split()[-1])
63 settings_xcode['xcode_build'] = lines[-1].split()[-1]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompilation_driver.cpp81 std::string split; in SplitString() local
82 while (getline(sstr, split, ch)) { in SplitString()
83 vec.emplace_back(split); in SplitString()
/arkcompiler/toolchain/build/scripts/
Dcheck_mac_system_and_cpu.py22 res = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE,
43 host_cpu = res[2].strip().decode().split("brand_string:")[-1]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dstring_split_test.sts16 //! CHECKER AOT test check no deoptimization occurs in String.split
22 //! CHECKER JIT test check no deoptimization occurs in String.split
30 let arr: String[] = str.split(" ", -5);
41 arr = str.split(" ", 3);
/arkcompiler/runtime_core/libpandafile/templates/
Dfile_format_version.h.erb34 constexpr std::array<uint8_t, File::VERSION_SIZE> version {<%= Panda::version.split('.').join(', ')…
35 constexpr std::array<uint8_t, File::VERSION_SIZE> minVersion {<%= Panda::min_version.split('.').joi…
38 {<%= api_version.split('.').join(', ') %>},
55 % current_version_raw = Panda::version.split('.')
60 {<%= api_version[0] %>, {<%= api_version[1].split('.').join(', ') %>}},
/arkcompiler/runtime_core/docs/diagrams/
Dstatic-analyzer-gc-func-list-gen.puactivity18 split
21 split again
32 end split
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dstatic-analyzer-gc-func-list-gen-activity.plantuml18 split
21 split again
32 end split
/arkcompiler/ets_runtime/test/
Drun_ts_test262.py99 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/ets_frontend/ets2panda/linter/cookbook_convertor/src/
Dcookbook_convertor.ts89 doc_lines = contents.split(/\r?\n/);
102 let line = doc_lines[_line].split(CB_R)[1];
144 const ss = s.split(from);
180 const ss = s.split('``');
253 const title = doc_lines[_line].split(CB_FIX)[1].trim();
288 let line = doc_lines[_line].split(CB_R)[1];
462 if (s.split(CB_REF)[1]) {
466 const ruleNum = Number(s.replace('`', '').split(RECIPE)[1]);
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
Dtest_result.py268 f.getvalue().split("\n") if line]
284 f.getvalue().split("\n") if line]
321 f.getvalue().split("\n") if line]

123456789