Home
last modified time | relevance | path

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

12345678910>>...13

/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
Dintrinsics.h44 class MIRType; // circular dependency exists, no other choice
45 class MIRModule; // circular dependency exists, no other choice
/arkcompiler/ets_runtime/ecmascript/platform/common/
Dfilesystem.cpp30 if (path.empty() || Exists(path)) { in CreateDirectory()
40 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/runtime_core/static_core/bytecode_optimizer/tests/benchmark/
Dcompare.py33 def exists(name, d): function
42 if not os.path.exists(args.old):
43 logging.error("Input file (%s) does not exists.", args.old)
46 if not os.path.exists(args.new):
47 logging.error("Input file (%s) does not exists.", args.new)
71 if not exists("error", old_res[filename]):
72 if not exists("error", new_res[filename]):
73 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/test/scripts/sdk_test/
Dpreparation.py55 if not os.path.exists(java_path):
60 if not os.path.exists(node_path):
71 if os.path.exists(output_log_file):
73 if os.path.exists(daily_report_file):
75 if os.path.exists(pictures_dic):
/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/aot_file/tests/
Daot_file_test.cpp57 if (Exists(this->testAnPath_.c_str())) { in TearDown()
60 if (Exists(this->testApPath_.c_str())) { in TearDown()
63 if (Exists(this->testAiPath_.c_str())) { in TearDown()
80 ASSERT_TRUE(Exists(testAbcPath_)); in SetTestAbcPath()
127 ASSERT_TRUE(Exists(testApPath_)); in GetApFileInTest()
206 ASSERT_TRUE(Exists(testAnPath_)); in HWTEST_F_L0()
207 ASSERT_TRUE(Exists(testAiPath_)); in HWTEST_F_L0()
220 ASSERT_FALSE(Exists(testAnPath_)); in HWTEST_F_L0()
221 ASSERT_FALSE(Exists(testAiPath_)); in HWTEST_F_L0()
/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/ets_runtime/test/moduletest/mapget/
Dmapget.js187 objkeys6.push("Key: " + key + ", Exists: " + hasKey);
190Exists: true", "Key: 1, Retrieved Value: ark_numberValue", "Key: 1, Exists: true", "Key: true, Ret…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
Drunnable_module.py52 if not source_file.exists():
71 if not (self._disasm_file and self._disasm_file.exists()):
88 if not self.source_file.exists():
93 if not self.source_file.exists():
95 if not self.panda_file.exists():
/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):
156 if os.path.exists(local_file) and not _check_sha256(huaweicloud_url, local_file):
159 if not os.path.exists(local_file):
191 if os.path.exists(src_dir):
197 if os.path.exists(dest_dir):
201 if os.path.exists(dest_dir) and dest_dir != src_dir:
228 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_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/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:
126 …write content to file if file exists it will be truncated. if file does not exist it wil be created
/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/libabckit/tests/stress/
Dstress_sts.py118 if not os.path.exists(abs_path):
119 logger.debug('Not exists %s', abs_path)
128 if not os.path.exists(abs_path):
129 logger.debug('Not exists %s', abs_path)
148 if result.returncode == 0 and not os.path.exists(abc_path):
/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):

12345678910>>...13