| /arkcompiler/ets_runtime/test/moduletest/stringsplit/ |
| D | stringsplit.js | 24 ("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/ |
| D | live_registers.cpp | 46 …for (auto split = interval; !interval->IsPhysical() && split != nullptr; split = split->GetSibling… in CopyIntervals() local 47 if (split->HasReg()) { in CopyIntervals() 48 minLn = std::min(minLn, split->GetBegin()); in CopyIntervals() 49 maxLn = std::max(maxLn, split->GetEnd()); in CopyIntervals() 50 destination->push_back(split); in CopyIntervals() 116 auto split = queue.front(); in BuildIntervalsTree() local 118 if (split->end - split->begin <= 0) { in BuildIntervalsTree() 122 auto midpoint = split->min + (split->max - split->min) / 2U; in BuildIntervalsTree() 126 …auto leftMidpoint = PartitionLeftSplit(split->begin, split->end, midpoint, &leftMinLn, &leftMaxLn); in BuildIntervalsTree() 130 …auto rightMidpoint = PartitionRightSplit(leftMidpoint, split->end, midpoint, &rightMinLn, &rightMa… 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/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 …]
|
| D | split_resolver_new_test.cpp | 153 auto split = param_interval->SplitAt(add_interval->GetBegin() - 1, graph->GetAllocator()); in __anonca3494300102() local 154 split->SetLocation(Location::MakeStackSlot(SLOT_AT_ADD)); in __anonca3494300102() 155 split = split->SplitAt(mul_interval->GetBegin() - 1, graph->GetAllocator()); in __anonca3494300102() 156 split->SetReg(REG_AT_MUL); in __anonca3494300102() 265 auto split = param_interval->SplitAt(mul_interval->GetBegin() - 1, graph->GetAllocator()); in __anonca3494300802() local 266 split->SetLocation(Location::MakeStackSlot(SLOT_AT_MUL)); in __anonca3494300802()
|
| /arkcompiler/ets_frontend/arkguard/test/combinations/basic_grammar/15_symbol/ |
| D | 01_symbol_01.ts | 38 Symbol.split 52 [Symbol.split]:9, 65 assert(o1[Symbol.split] === 9);
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/src/codeFix/engines/ |
| D | EsLintFixEngine.ts | 96 const fixEndCol = Number.parseInt(issue.defect.fixKey.split('%')[2]); 98 const originLineNum = sourceText.slice(start, end).split(eof).length; 99 const fixTextLineNUM = fix.text.split(eof).length; 103 const defectOldEndCol = Number.parseInt(defectOld.fixKey.split('%')[2]); 128 const splitText = fix.text.split(eof); 133 … const colLen = Number.parseInt(defectNew.fixKey.split('%')[2]) - defectNew.reportColumn; 140 endCol = Number.parseInt(defectNew.fixKey.split('%')[2]) + subCol;
|
| /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/tests/tests-u-runner-2/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/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/arkguard/test/ut/utils/ |
| D | PrinterUtils.spec.ts | 91 const lines = content.split('\n'); 92 const firstLine = lines[0].split(':'); 93 const secondLine = lines[1].split(':'); 94 const thirdLine = lines[2].split(':'); 176 const lines = content.split('\n'); 177 const firstLine = lines[0].split(':'); 178 const secondLine = lines[2].split(':'); 179 const thirdLine = lines[3].split(':'); 180 const fourthLine = lines[4].split(':'); 197 const firstLine = content.split(':'); [all …]
|
| /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/ets_frontend/ets2panda/linter/src/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);
|
| /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/runtime_core/static_core/gn/build/ |
| 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/ets_runtime/test/moduletest/loadicbyvalue/ |
| D | loadicbyvalue.js | 73 strC = str.split("C"); 76 strC = lineStr.split("C"); 82 strC = strObj.split("C");
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | compilation_driver.cpp | 80 std::string split; in SplitString() local 81 while (getline(sstr, split, ch)) { in SplitString() 82 vec.emplace_back(split); in SplitString()
|
| /arkcompiler/ets_runtime/test/moduletest/regexpcache/ |
| D | regexpcache.js | 45 const split_res1 = str.split(regex); 46 const split_res2 = str.split(regex);
|
| /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(', ') %>}, 58 % current_version_raw = Panda::version.split('.') 63 {<%= api_version[0] %>, {<%= api_version[1].split('.').join(', ') %>}},
|
| /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.ets | 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/ets_runtime/test/ |
| 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/ets_frontend/ets2panda/linter/homecheck/src/utils/common/ |
| D | Utils.ts | 80 const [lineA, colA] = keyA.split('%', 2).map(Number); 81 const [lineB, colB] = keyB.split('%', 2).map(Number);
|
| /arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/prop+strProp+top/15_symbol/ |
| D | 01_symbol_01_expected.txt | 32 Symbol.split; 45 [Symbol.split]: 9, 57 assert(j[Symbol.split] === 9);
|