Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/
Dpass_manager_statistics.cpp152 void PassManagerStatistics::DumpStatisticsCsv(char sep) const in DumpStatisticsCsv()
158 csv << "\"" << m_name << "\"" << sep; in DumpStatisticsCsv()
159 csv << i.pass_name << sep; in DumpStatisticsCsv()
160 csv << i.mem_used_ir << sep; in DumpStatisticsCsv()
161 csv << i.mem_used_local << sep; in DumpStatisticsCsv()
162 csv << i.time_us << sep; in DumpStatisticsCsv()
164 csv << i.before_pass.num_of_basicblocks << sep; in DumpStatisticsCsv()
165 csv << i.after_pass.num_of_basicblocks << sep; in DumpStatisticsCsv()
166 csv << i.before_pass.num_of_instructions << sep; in DumpStatisticsCsv()
167 csv << i.after_pass.num_of_instructions << sep; in DumpStatisticsCsv()
Dpass_manager_statistics.h67 void DumpStatisticsCsv(char sep = ',') const;
/arkcompiler/ets_frontend/testTs/
Dconfig.py41 TEST_PATH = os.sep.join([".", "testTs", "test"])
42 OUT_PATH = os.sep.join([".", "out", "testTs"])
43 EXPECT_PATH = os.sep.join([".", "testTs", "expect"])
Drun_testTs.py74 path_list = file.split(os.sep)
76 file = "." + os.sep + file
80 ts_list = temp_out_file_path.split(os.sep)
82 ts_dir_path = os.sep.join(ts_list)
83 path_list = out_file_path.split(os.sep)
85 out_dir_path = os.sep.join(path_list)
195 path_list = file.split(os.sep)
197 file = "." + os.sep + file
201 path_list = out_path.split(os.sep)
203 out_dir_path = os.sep.join(path_list)
/arkcompiler/ets_frontend/ts2panda/src/
Dindex.ts291 let target = dtsFile.split(path.sep).pop();
296 createSymlinkCmd = `mklink ${__dirname}${path.sep}${target} ${dtsFile}`;
298 createSymlinkCmd = `ln -s ${dtsFile} ${__dirname}${path.sep}${target}`;
314 const es2abcBinaryPath = path["join"](__dirname, "..", "bin", path.sep);
345 let watchFilePrefix = CmdOptions.getWatchJsPath() + path.sep + watchFileName;
461 let deamonJSFilePrefix = CmdOptions.getEvaluateDeamonPath() + path.sep + watchFileName;
462 let deamonABCFilePrefix = CmdOptions.getEvaluateDeamonPath() + path.sep + watchOutputFileName;
557 …fs.writeFileSync(CmdOptions.getEvaluateDeamonPath() + path.sep + watchFileName + ".js", stopWatchi…
/arkcompiler/ets_frontend/es2panda/test/
Dtest262util.py44 test262_path = path.join(path.sep, 'tmp', 'test262-%s' % revision)
47 archive_file = path.join(path.sep, 'tmp', 'test262.zip')
67 ['unzip', '-q', '-d', path.join(path.sep, 'tmp'), archive_file])
Drunner.py621 self.tmp_dir = path.join(path.sep, 'tmp', 'panda', 'test262')
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dgraph.cpp518 auto sep = " "; in DumpThrowableInsts() local
520 (*out) << sep << "BB " << bb->GetId(); in DumpThrowableInsts()
521 sep = ", "; in DumpThrowableInsts()
581 const char *sep = ""; in Dump() local
585 stm << sep << #name; \ in Dump()
586 sep = ", "; \ in Dump()
Ddump.cpp204 const char *sep = ""; in DumpInputs() local
206 (*out) << sep << std::dec << InstId(GetInput(i).GetInst(), allocator); in DumpInputs()
212 sep = ", "; in DumpInputs()
216 (*out) << sep << std::hex << "0x" << imm.value; in DumpInputs()
222 sep = ", "; in DumpInputs()
/arkcompiler/ets_runtime/test/
Drun_ts_test262.py157 print(filePath, err_msg, sep='\t')
170 print("TEST CASE", "FAIL REASON", "FAIL LINE", sep="\t")
/arkcompiler/ets_runtime/ecmascript/
Djs_stable_array.cpp220 int sep = ','; in Join() local
234 sep = EcmaStringAccessor(sepStringHandle).Get(0); in Join()
236 sep = JSStableArray::SeparatorFlag::MINUS_TWO; in Join()
239 sep = JSStableArray::SeparatorFlag::MINUS_ONE; in Join()
250 …bool isOneByte = (sep != JSStableArray::SeparatorFlag::MINUS_ONE) || EcmaStringAccessor(sepStringH… in Join()
289 if (sep >= 0) { in Join()
290 EcmaStringAccessor(newString).Set(current, static_cast<uint16_t>(sep)); in Join()
291 } else if (sep != JSStableArray::SeparatorFlag::MINUS_TWO) { in Join()
/arkcompiler/runtime_core/libpandafile/templates/
Dbytecode_instruction-inl_gen.h.erb433 % sep = " "
435 % op_str = "\"#{sep}v\" << inst.template GetVReg<BytecodeInst<Mode>::Format::#{inst.format.pret…
436 % op_str = "\"#{sep}\" << inst.template GetImm<BytecodeInst<Mode>::Format::#{inst.format.pretty…
437 % op_str = "\"#{sep}id\" << inst.template GetId<BytecodeInst<Mode>::Format::#{inst.format.prett…
439 % sep = ', '
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_typedarray.cpp759 int sep = ','; in Join() local
771 sep = EcmaStringAccessor(sepStringHandle).Get(0); in Join()
773 sep = BuiltinsTypedArray::SeparatorFlag::MINUS_TWO; in Join()
776 sep = BuiltinsTypedArray::SeparatorFlag::MINUS_ONE; in Join()
785 bool isOneByte = (sep != BuiltinsTypedArray::SeparatorFlag::MINUS_ONE) || in Join()
815 if (sep >= 0) { in Join()
816 EcmaStringAccessor(newString).Set(current, static_cast<uint16_t>(sep)); in Join()
817 } else if (sep != BuiltinsTypedArray::SeparatorFlag::MINUS_TWO) { in Join()
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dexecution.py95 1].lstrip(os.path.sep)
538 output_dir_items = output_dir.split(os.path.sep)
542 output_dir_items.insert(1, os.path.sep)
544 output_dir_items.insert(0, os.path.sep)
/arkcompiler/ets_frontend/ts2panda/src/base/
Dutil.ts410 let inputFileTmps = inputFileName.split(path.sep);
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js63563 get sep() { getter