Home
last modified time | relevance | path

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

1234

/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/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/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/docs/diagrams/
Dstatic-analyzer-gc-func-list-gen.puactivity18 split
21 split again
32 end split
/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/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_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/ets_runtime/test/aottest/definegettersetterbyvalue/
Ddefinegettersetterbyvalue.ts26 [this.firstWord, this.secondWord] = value.split(" ");
/arkcompiler/ets_runtime/test/aottest/exception_case5/
Dexception_case5.js22 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case4/
Dexception_case4.js24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case1/
Dexception_case1.js24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case2/
Dexception_case2.js24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case10/
Dexception_case10.js27 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case3/
Dexception_case3.js24 let array = stack.split('\n')
/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/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_runtime/test/aottest/exception_case12/
Dexception_case12.ts28 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case7/
Dexception_case7.js27 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case8/
Dexception_case8.js28 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case6/
Dexception_case6.js25 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/stobjbyindex/
Dstobjbyindex.ts37 [this[1], this["100"]] = value.split(" ");
/arkcompiler/ets_runtime/test/aottest/exception_case9/
Dexception_case9.js30 let array = stack.split('\n')

1234