Home
last modified time | relevance | path

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

1234

/arkcompiler/runtime_core/plugins/
DCMakeLists.txt19 if (PANDA_WITH_ECMASCRIPT AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/ecmascript")
25 if (PANDA_WITH_ACCORD AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/accord")
31 if (PANDA_WITH_CANGJIE AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/cangjie")
37 if (PANDA_WITH_JAVA AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/java")
43 …AND PANDA_WITH_RUNTIME AND PANDA_WITH_JAVA AND PANDA_WITH_ECMASCRIPT AND EXISTS "${CMAKE_CURRENT_S…
/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]):
Drun_benchmark.py115 if not os.path.exists(c2p):
116 print("c2p executable does not exists (%s)." % os.path.relpath(c2p))
141 if not os.path.exists(args.testdir):
142 print("Test directory (%s) does not exists." % args.testdir)
/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/toolchain/build/prebuilts_download/
Dutil.py24 if not os.path.exists(input_file):
43 if not os.path.exists(input_file):
61 if not os.path.exists(file_dir):
74 if os.path.exists(output_file) and os.path.isfile(output_file):
91 if not os.path.exists(file_dir):
Dprebuilts_download.py72 return os.path.exists(mark_file_path)
130 if not os.path.exists(abs_unzip_dir):
140 if os.path.exists(local_file):
165 if os.path.exists(full_code_path):
187 if os.path.exists(os.path.dirname(dest_dir)):
202 if os.path.exists(src_dir):
208 if os.path.exists(dest_dir):
212 if os.path.exists(dest_dir):
243 if not os.path.exists(args.bin_dir):
/arkcompiler/ets_frontend/ts2panda/scripts/
Drun.py81 if os.path.exists(os.path.join(dist_dir, inp_dir)):
91 if os.path.exists(build_dir):
95 if not os.path.exists(bin_dir):
99 if not os.path.exists(obj_bin_dir):
127 if not os.path.exists(os.path.join(args.dist_dir, "node_modules")):
/arkcompiler/ets_runtime/ecmascript/tests/
Decma_string_table_test.cpp68 …* @tc.desc: Obtain EcmaString string from utf8 encoded data. If the string already exists in the d…
89 …* @tc.desc: Obtain EcmaString string from utf16 encoded data. If the string already exists in the …
111 …* @tc.desc: Obtain EcmaString string from another EcmaString. If the string already exists in the …
/arkcompiler/ets_frontend/test262/
Dutils.py110 if os.path.exists(path):
115 if os.path.exists(file):
120 if not os.path.exists(path):
Drun_sunspider.py256 if os.path.exists(file_name_pre):
266 if not os.path.exists(dependency_bin_file):
271 if not os.path.exists(proto_bin_file):
283 elif os.path.exists(proto_bin_file):
Drun_test262.py136 if not os.path.exists(os.path.join(ts2abc_build_dir, "package.json")) and \
137 not os.path.exists(os.path.join(ts2abc_build_dir, "..", "package.json")):
140 if os.path.exists(os.path.join(ts2abc_build_dir, "..", "package.json")) and \
141 not os.path.exists(os.path.join(ts2abc_build_dir, "package.json")):
/arkcompiler/ets_frontend/ts2panda/src/function/
DgeneratorFunctionBuilder.ts129 // whether iterator.[[return]] exists
153 // whether iterator.[[throw]] exists
165 // whether iterator.[[return]] exists
168 // [[return]] exists
/arkcompiler/ets_runtime/ecmascript/base/
Darray_helper.cpp169 // b. Let exists be ? HasProperty(source, P). in FlattenIntoArray()
170 // c. If exists is true, then in FlattenIntoArray()
191 bool exists = JSTaggedValue::HasProperty(thread, thisObjVal, p); in FlattenIntoArray() local
193 if (exists) { in FlattenIntoArray()
/arkcompiler/toolchain/build/compile_script/
Dark.py165 if not os.path.exists(path):
177 if not os.path.exists("args.gn"):
180 if not os.path.exists("build.ninja"):
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_array.cpp440 bool exists = JSTaggedValue::HasProperty(thread, thisObjVal, fromKey); in Concat() local
442 if (exists) { in Concat()
490 // 2. Let exists be HasProperty(E, P). in Concat()
491 // 4. If exists is true, then in Concat()
492 …bool exists = JSTaggedValue::HasProperty(thread, JSHandle<JSTaggedValue>::Cast(addObjHandle), from… in Concat() local
494 if (exists) { in Concat()
635 …bool exists = (thisObjVal->IsTypedArray() || JSTaggedValue::HasProperty(thread, thisObjVal, fromKe… in CopyWithin() local
637 if (exists) { in CopyWithin()
729 bool exists = JSTaggedValue::HasProperty(thread, thisObjVal, k); in Every() local
731 if (exists) { in Every()
[all …]
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dthrow.yaml769 …eption handler is found, the frame of invoker is restored. If such frame exists, the exception is …
815 …eption handler is found, the frame of invoker is restored. If such frame exists, the exception is …
863 …eption handler is found, the frame of invoker is restored. If such frame exists, the exception is …
864 …exception handler is found, the frame of invoker is restored. If such frame exists, the exception …
909 …eption handler is found, the frame of invoker is restored. If such frame exists, the exception is …
910 …exception handler is found, the frame of invoker is restored. If such frame exists, the exception …
955 If no such frame exists, the current VM thread exits.
977 If no such frame exists, the current VM thread exits.
1035 …eption handler is found, the frame of invoker is restored. If such frame exists, the exception is …
1036 …exception handler is found, the frame of invoker is restored. If such frame exists, the exception …
[all …]
/arkcompiler/toolchain/build/toolchain/
Dgcc_solink_wrapper.py8 This script exists to avoid using complex shell commands in
60 if os.path.exists(tocfile):
/arkcompiler/runtime_core/tests/cts-generator/generator/
Ddefinitions.rb36 LOG.debug "check #{item_name} exists in definitions"
/arkcompiler/runtime_core/compiler/tools/
Dpbc_2_ir_doc_gen.sh15 # 1. If PBC2IR.md already exists, it is copied to PBC2IR_OLD.md.
/arkcompiler/runtime_core/runtime/tooling/inspector/tests/
Dtest_debugger.cpp69 return Error(Error::Type::BREAKPOINT_ALREADY_EXISTS, "Breakpoint already exists"); in SetBreakpoint()
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/
Dgenerate_abc_file.py34 if os.path.isabs(out_dir) and not os.path.exists(out_dir):
/arkcompiler/runtime_core/dprof/converter/
Dfeatures_manager.h38 LOG(ERROR, DPROF) << "Feature already exists, featureName=" << featureName; in RegisterFeature()
/arkcompiler/ets_runtime/ecmascript/ic/
Dproto_change_details.cpp45 // the vector is full and no hole exists. in Add()
/arkcompiler/runtime_core/gn/build/
Dcmake_configure_file.py80 if not os.path.exists(args.output) or read(args.output) != output:

1234