| /arkcompiler/ets_runtime/test/moduletest/stringsplit/ |
| 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/ |
| D | live_registers.cpp | 23 struct Split { struct 24 Split(LifeIntervalsIt pBegin, LifeIntervalsIt pEnd, LifeNumber pMin, LifeNumber pMax, in Split() function 45 …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() 99 ArenaQueue<const Split *> queue(lalloc->Adapter()); in BuildIntervalsTree() 105 …queue.push(lalloc->New<Split>(intervals->begin(), intervals->end(), lnRange.first, lnRange.second,… in BuildIntervalsTree() 109 // Split each interval into three parts: in BuildIntervalsTree() [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/string/ |
| 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("尼", 0); [all …]
|
| /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] 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/ |
| D | fport.py | 52 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/ |
| 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/docs/diagrams/ |
| D | static-analyzer-gc-func-list-gen.puactivity | 18 split 21 split again 32 end split
|
| /arkcompiler/runtime_core/static_core/docs/diagrams/ |
| D | static-analyzer-gc-func-list-gen-activity.plantuml | 18 split 21 split again 32 end split
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | string_split_test.sts | 16 //! 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/static_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/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/ets_runtime/test/perform/string/ |
| D | expect_output.txt | 17 string split number of input parameters is 2 : 70 18 string split number of input parameters is 1 : 35 19 string split into regexp.split : 22
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | file_format_version.h.erb | 34 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/static_core/compiler/tests/ |
| 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 = interval->SplitAt(8U, GetAllocator()); in TEST_F() local [all …]
|
| /arkcompiler/runtime_core/static_core/verification/util/ |
| D | mem.h | 29 Linux is using a split address space for 32 bit systems, although in the past there 30 were options for supporting 4/4s split or dedicated kernel address space (on those 31 …architecture that supports it, e.g. x86). Linux always uses split address space for 64 bit systems. 33 [For 32-bit Linux, the split is usually 3/1, i.e. 0x00000000-0xc0000000 is user space,
|
| /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/static_core/tests/tests-u-runner/runner/ |
| 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_frontend/ets2panda/linter/cookbook_convertor/src/ |
| D | cookbook_convertor.ts | 89 doc_lines = contents.split(/\r?\n/); 102 let line = doc_lines[_line].split(CB_R)[1]; 105 * let tegNumStr = line.split(':')[0]; 106 * let ruleNum = Number(tegNumStr.split('#')[1]); 109 // line.split(':')[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]; 290 // .split(':')[1] ); [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cg_critical_edge.cpp | 53 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/plugins/ets/tests/ets_func_tests/regression/ |
| D | function_params_optional_union.sts | 17 public split (separator: String | Int, limit?: Number) : String[] { 24 assert a.split("123", 1)[0] == ""
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_alignment.cpp | 202 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/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/07.value_types/03.numeric_types_hierarchies/ |
| D | hier1.sts | 19 params: {{c.sm.split(" ").0}} to {{c.lg.split(" ").0}}
|
| /arkcompiler/runtime_core/static_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/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/ets2panda/linter/lib/utils/functions/ |
| D | PathHelper.ts | 20 for (const pathDir of npath.dirname(path).split(npath.sep)) { 33 pathComps = npath.dirname(npath.normalize(srcFile.fileName)).split(npath.sep);
|