| /arkcompiler/runtime_core/plugins/ |
| D | CMakeLists.txt | 19 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/ |
| D | compare.py | 32 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]):
|
| D | run_benchmark.py | 115 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/ |
| D | utils.py | 35 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")):
|
| D | run_testTs.py | 86 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/ |
| D | util.py | 24 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):
|
| D | prebuilts_download.py | 72 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/ |
| D | run.py | 81 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/ |
| D | ecma_string_table_test.cpp | 68 …* @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/ |
| D | utils.py | 110 if os.path.exists(path): 115 if os.path.exists(file): 120 if not os.path.exists(path):
|
| D | run_sunspider.py | 256 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):
|
| D | run_test262.py | 136 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/ |
| D | generatorFunctionBuilder.ts | 129 // whether iterator.[[return]] exists 153 // whether iterator.[[throw]] exists 165 // whether iterator.[[return]] exists 168 // [[return]] exists
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | array_helper.cpp | 169 // 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/ |
| D | ark.py | 165 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/ |
| D | builtins_array.cpp | 440 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/ |
| D | throw.yaml | 769 …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/ |
| D | gcc_solink_wrapper.py | 8 This script exists to avoid using complex shell commands in 60 if os.path.exists(tocfile):
|
| /arkcompiler/runtime_core/tests/cts-generator/generator/ |
| D | definitions.rb | 36 LOG.debug "check #{item_name} exists in definitions"
|
| /arkcompiler/runtime_core/compiler/tools/ |
| D | pbc_2_ir_doc_gen.sh | 15 # 1. If PBC2IR.md already exists, it is copied to PBC2IR_OLD.md.
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
| D | test_debugger.cpp | 69 return Error(Error::Type::BREAKPOINT_ALREADY_EXISTS, "Breakpoint already exists"); in SetBreakpoint()
|
| /arkcompiler/runtime_core/libark_defect_scan_aux/tests/ |
| D | generate_abc_file.py | 34 if os.path.isabs(out_dir) and not os.path.exists(out_dir):
|
| /arkcompiler/runtime_core/dprof/converter/ |
| D | features_manager.h | 38 LOG(ERROR, DPROF) << "Feature already exists, featureName=" << featureName; in RegisterFeature()
|
| /arkcompiler/ets_runtime/ecmascript/ic/ |
| D | proto_change_details.cpp | 45 // the vector is full and no hole exists. in Add()
|
| /arkcompiler/runtime_core/gn/build/ |
| D | cmake_configure_file.py | 80 if not os.path.exists(args.output) or read(args.output) != output:
|