Home
last modified time | relevance | path

Searched full:exists (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/arkcompiler/ets_runtime/test/moduletest/mapget/
Dexpect_output.txt92 Key: ark_stringKey, Exists: true
94 Key: 1, Exists: true
96 Key: true, Exists: true
98 Key: [object Object], Exists: true
100 Key: null, Exists: true
102 Key: undefined, Exists: true
104 Key: NaN, Exists: true
106 Key: Infinity, Exists: true
108 Key: -Infinity, Exists: true
110 Key: /ark_regexKey/, Exists: true
[all …]
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dpreparation.py49 if not os.path.exists(java_path):
53 if not os.path.exists(options.configs.get('node_js_path')):
64 if os.path.exists(output_log_file):
66 if os.path.exists(daily_report_file):
68 if os.path.exists(pictures_dic):
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/benchmark/
Dcompare.py32 def exists(name, d): function
41 if not os.path.exists(args.old):
42 print("Input file (%s) does not exists." % args.old)
45 if not os.path.exists(args.new):
46 print("Input file (%s) does not exists." % args.new)
70 if not exists("error", old_res[filename]):
71 if not exists("error", new_res[filename]):
72 if exists("code_item section", new_res[filename]):
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/
Dcompare.py32 def exists(name, d): function
41 if not os.path.exists(args.old):
42 print("Input file (%s) does not exists." % args.old)
45 if not os.path.exists(args.new):
46 print("Input file (%s) does not exists." % args.new)
70 if not exists("error", old_res[filename]):
71 if not exists("error", new_res[filename]):
72 if exists("code_item section", new_res[filename]):
/arkcompiler/ets_frontend/testTs/
Dutils.py35 if not os.path.exists(path):
40 if os.path.exists(path):
45 if os.path.exists(path):
87 if os.path.exists(os.path.join(ts2abc_build_dir, "package.json")):
89 elif os.path.exists(os.path.join(ts2abc_build_dir, "..", "package.json")):
Drun_testTs.py86 if not os.path.exists(out_dir_path):
105 if os.path.exists(temp_abc_file_path):
108 if os.path.exists(temp_out_file_path):
212 if (not os.path.exists(out_path) or not os.path.exists(expect_path)):
231 if not os.path.exists(OUT_RESULT_FILE):
259 if (os.path.exists(TS_CASES_DIR)):
270 if not os.path.exists("./tests/cases/conformance/"):
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dssa.h24 class BB; // circular dependency exists, no other choice
25 class MeCFG; // circular dependency exists, no other choice
26 class VersionSt; // circular dependency exists, no other choice
27 class OriginalStTable; // circular dependency exists, no other choice
28 class VersionStTable; // circular dependency exists, no other choice
29 class SSATab; // circular dependency exists, no other choice
30 class Dominance; // circular dependency exists, no other choice
Dver_symbol.h24 class BB; // circular dependency exists, no other choice
25 class PhiNode; // circular dependency exists, no other choice
26 class MayDefNode; // circular dependency exists, no other choice
27 class MustDefNode; // circular dependency exists, no other choice
28 class VersionStTable; // circular dependency exists, no other choice
29 class OriginalSt; // circular dependency exists, no other choice
/arkcompiler/ets_runtime/ecmascript/platform/common/
Dfilesystem.cpp40 if (!Exists(path)) { in CreateDirectory()
46 bool Exists(const std::string& path) in Exists() function
105 if (Exists(realPath)) { in CreateEmptyFile()
106 LOG_FULL(INFO) << realPath << " exists, skip creation"; in CreateEmptyFile()
113 if (Exists(dir)) { in CreateEmptyFile()
114 LOG_FULL(INFO) << dir << " exists, skip creation"; in CreateEmptyFile()
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dcreate_empty_file_test.cpp56 EXPECT_TRUE(filesystem::Exists(file_path)); in HWTEST_F_L0()
74 EXPECT_TRUE(filesystem::Exists(file_path)); in HWTEST_F_L0()
85 EXPECT_TRUE(filesystem::Exists(dir_path)); in HWTEST_F_L0()
86 EXPECT_TRUE(filesystem::Exists(file_path)); in HWTEST_F_L0()
/arkcompiler/toolchain/build/prebuilts_download/
Dutil.py24 if not os.path.exists(input_file):
43 if not os.path.exists(input_file):
63 if not os.path.exists(file_dir):
76 if os.path.exists(output_file) and os.path.isfile(output_file):
95 if not os.path.exists(file_dir):
Dprebuilts_download.py72 return os.path.exists(mark_file_path)
146 if not os.path.exists(abs_unzip_dir):
155 if not os.path.exists(local_file):
187 if os.path.exists(src_dir):
193 if os.path.exists(dest_dir):
197 if os.path.exists(dest_dir) and dest_dir != src_dir:
224 if not os.path.exists(args.bin_dir):
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Dresult.py30 if (os.path.exists(summary_report)):
34 if (os.path.exists(details_report)):
38 if (os.path.exists(failures_report)):
/arkcompiler/runtime_core/bytecode_optimizer/
Dbytecode_analysis_results.h70 bool &exists);
73 …codeAnalysisResult &GetOrCreateBytecodeAnalysisResult(const std::string &recordname, bool &exists);
77 // Following methods should only be called when no writer modifying analysis results exists
91 const std::string &name, bool &exists) in GetOrCreateElementInMap() argument
96 exists = false; in GetOrCreateElementInMap()
/arkcompiler/runtime_core/compiler/tests/
Ddraw_cfg_test.cpp110 EXPECT_TRUE(std::filesystem::exists(dump_file));
117 EXPECT_TRUE(std::filesystem::exists(dot_file));
118 EXPECT_TRUE(std::filesystem::exists(png_file));
144 EXPECT_TRUE(std::filesystem::exists(dump_file));
151 EXPECT_TRUE(std::filesystem::exists(dot_file));
152 EXPECT_TRUE(std::filesystem::exists(png_file));
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_pragma.h25 class MIRModule; // circular dependency exists, no other choice
26 class MIRType; // circular dependency exists, no other choice
27 class MIRFunction; // circular dependency exists, no other choice
28 class MIRSymbol; // circular dependency exists, no other choice
29 class MIRSymbolTable; // circular dependency exists, no other choice
30 class MIRTypeNameTable; // circular dependency exists, no other choice
Dmir_module.h42 class CallInfo; // circular dependency exists, no other choice
43 class MIRModule; // circular dependency exists, no other choice
44 class MIRBuilder; // circular dependency exists, no other choice
134 class MIRType; // circular dependency exists, no other choice
135 class MIRFunction; // circular dependency exists, no other choice
136 class MIRSymbol; // circular dependency exists, no other choice
137 class MIRSymbolTable; // circular dependency exists, no other choice
138 class MIRFloatConst; // circular dependency exists, no other choice
139 class MIRDoubleConst; // circular dependency exists, no other choice
140 class MIRBuilder; // circular dependency exists, no other choice
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Dutils.py57 if path.exists(target_path):
81 if not force_download and path.exists(stamp_file):
86 if force_download or not path.exists(temp_path):
89 if path.exists(dest_path):
110 if path.exists(dest_path) and remove_if_exist:
125 …write content to file if file exists it will be truncated. if file does not exist it wil be created
/arkcompiler/ets_frontend/es2panda/test/benchmark/
Dutils.py70 if os.path.exists(path):
76 if os.path.exists(path):
81 if os.path.exists(file):
86 if not os.path.exists(path):
155 if os.path.exists(case_data):
167 if os.path.exists(need_case_data_path):
/arkcompiler/runtime_core/static_core/runtime/profilesaver/
Dprofile_saver.h66 * whether profile saver instance exists.
104 * If no entry exists, a new empty one will be created, added to the cache and then returned.
109 * Processes the existing profiling info from the jit code cache(if exists) and returns
157 * If no entry exists, a new empty one will be created, added to the cache and then returned.
/arkcompiler/runtime_core/disassembler/tests/
Dgen_pa_file.py41 if os.path.isabs(out_dir) and not os.path.exists(out_dir):
164 if not os.path.exists(out_merged_dependency_proto_dir):
201 if not os.path.exists(out_dependency_abc_dir):
204 if not os.path.exists(out_dependency_proto_dir):
250 if os.path.exists(out_dir_disassember_test):
266 if not os.path.exists(out_dir):
277 if not os.path.exists(out_file):
308 if not os.path.exists(tc_file):
338 is_out_tc_pa_file = os.path.exists(out_tc_pa_file)
342 is_target_pa_file = os.path.exists(target_pa_file)
/arkcompiler/runtime_core/static_core/plugins/
DCMakeLists.txt16 if(PANDA_WITH_TOOLCHAIN AND (EXISTS ${ES2PANDA_PATH}))
36 if(EXISTS ${${PLUGIN_SOURCE}}/CMakeLists.txt)
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_entry.py44 if os.path.exists(performance_config.MailPicConfig.html_file_path):
46 if os.path.exists(performance_config.MailPicConfig.attach_path):
48 if not os.path.exists(performance_config.MailPicConfig.mail_data_path):
58 if os.path.exists(pic_path):
171 if os.path.exists(csv_filename):
/arkcompiler/ets_frontend/test/scripts/utils/send_email/
Dsend_email.py30 if not os.path.exists(file_name):
40 if os.path.exists(file):
49 if os.path.exists(path):
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/
Dsize_compare.py115 help='Path to java bin where exists java/jar/javac command, \
214 if os.path.exists(dir_path):
263 if os.path.exists(abc_file_path):
284 if os.path.exists(dex_size_data):
317 if os.path.exists(dex_size_data):
321 if os.path.exists(source_size_data):
355 if os.path.exists(self.js_test_root):
357 if os.path.exists(self.ts_test_root):
359 if os.path.exists(self.java_test_root):

12345678910>>...12