/arkcompiler/runtime_core/tests/checked/verify_aot_tests/ |
D | verify_aot_test.pa | 25 #! RUN_PAOC options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc --paoc-use-ch… 26 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver… 31 #! RUN_PAOC options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc --paoc-use-ch… 32 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver… 37 #! RUN_PAOC options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc --paoc-use-ch… 38 #! RUN options: "--panda-files=../../verify_aot_tests_file2.checked/test.abc", entry: "Ver… 43 #! RUN_PAOC options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc --paoc-use-ch… 44 #! RUN options: "--panda-files=../../verify_aot_tests_file2.checked/test.abc", entry: "Ver… 49 #! RUN_PAOC options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc --paoc-use-ch… 50 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver… [all …]
|
/arkcompiler/ets_frontend/test262/ |
D | run_test262.py | 354 files = [] 367 files.append(file_name.split(origin_dir)[1]) 368 return files 372 files = fopen.readlines() 373 return files 376 files = [] 377 files = self.collect_tests() 378 files.extend(self.get_tests_from_file(ES2021_LIST_FILE)) 380 files.extend(self.get_tests_from_file(ES5_LIST_FILE)) 381 files.extend(self.get_tests_from_file(INTL_LIST_FILE)) [all …]
|
/arkcompiler/ets_frontend/arkguard/ |
D | tsconfig.base.json | 10 /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 12 /* Create source map files for emitted JavaScript files. */ 16 /* Set the newline character for emitting files. */
|
D | README-cn.md | 21 "files": ["obfuscation-rules.txt"], 32 "files": ["obfuscation-rules.txt"], 43 属性`ruleOptions.files`中指定的混淆配置文件会在构建HAP或HAR的时候被应用。 48 当构建HAP或者HAR的时候,最终的混淆规则是自身的`ruleOptions.files`属性,依赖的library的`consumerFiles`属性, 56 然后将文件路径放到`ruleOptions.files`和`consumerFiles`中,如下面的例子所示。 63 "files": ["obfuscation-rules.txt", "myrules.txt"], 244 * 主工程的`ruleOptions.files` (这里主工程我们指的是正在构建的工程)
|
/arkcompiler/runtime_core/tests/checked/ |
D | aot_cha.pa | 25 #! CHECKER panda files with cha 26 #! RUN_PAOC options: "--panda-files=../../basics_aot.checked/test.abc --paoc-use-cha=true --com… 30 #! RUN options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::mai… 33 #! CHECKER panda files no cha 34 #! RUN_PAOC options: "--panda-files=../../basics_aot.checked/test.abc --paoc-use-cha=false --co… 38 #! RUN options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::mai… 41 #! CHECKER invalid aot panda files 46 #! RUN options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::mai… 49 #! CHECKER invalid runtime panda files 50 #! RUN_PAOC options: "--panda-files=../../basics_aot.checked/test.abc --paoc-use-cha=true --com…
|
/arkcompiler/runtime_core/compiler/docs/ |
D | aot_cha.md | 8 result the order of files in class path and files themselves are enough to verify the class context… 9 …al same classes were passed and only the first is considered by VM. To identify ark files the adler 27 $ bin/ark_aot --boot-panda-files=$LIBDIR/lib1.abc:$LIBDIR/lib2.abc \ 28 --paoc-panda-files application.abc \ 31 $ bin/ark --boot-panda-files=$LIBDIR/lib1.abc:$LIBDIR/lib2.abc \ 32 --aot-files=application.an \ 40 $ bin/ark_aot --boot-panda-files=$LIBDIR/lib1.abc \ 41 --paoc-panda-files application.abc \ 44 $ bin/ark --boot-panda-files=$LIBDIR/lib1.abc:$LIBDIR/lib2.abc \ 45 --aot-files=application.an \ [all …]
|
D | paoc.md | 3 `Paoc` is an application to launch compiler on [panda binary files](../../docs/file_format.md). 5 1. `AOT-mode` (default) - compile the files and produce an executable; 13 #### `--paoc-panda-files` 15 - Comma-separated list of panda files to compile. 59 …m are specified, `paoc` will compile every method from [--paoc-panda-files](#`--paoc-panda-files`).
|
/arkcompiler/runtime_core/tests/cts-generator/runner/ |
D | result.rb | 19 @@stats = { passed: { cnt: 0, files: [] }, 20 failed: { cnt: 0, files: [] }, 21 core: { cnt: 0, files: [] }, 22 compilation_error: { cnt: 0, files: [] }, 23 quickening_error: { cnt: 0, files: [] }, 24 excluded: { cnt: 0, files: [] }}
|
/arkcompiler/ets_frontend/testTs/ |
D | run_testTs.py | 96 for root, dirs, files in os.walk(ts_dir_path): 97 for fi in files: 130 for root, dirs, files in os.walk(args.dir): 131 for file in files: 144 for root, dirs, files in os.walk(TS_CASES_DIR): 145 for file in files: 204 for root, dirs, files in os.walk(out_dir_path): 205 for fi in files: 289 files = glob(os.path.join(CUR_FILE_DIR, './instype/*.ts')); 295 for file in files: [all …]
|
D | README.md | 4 1. skip_tests.json:avoids code files and does not perform operations on TS files stored in the file. 5 …mport_tests.json:Is the path to the TS code file where import files are stored to add import files.
|
/arkcompiler/ets_runtime/ecmascript/js_vm/ |
D | main.cpp | 66 std::string files = argv[argc - 1]; in Main() local 67 if (!base::StringHelper::EndsWith(files, ".abc")) { in Main() 98 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in Main() 100 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in Main()
|
D | context_main.cpp | 66 std::string files = argv[argc - 1]; in Main() local 67 if (!base::StringHelper::EndsWith(files, ".abc")) { in Main() 98 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in Main() 100 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in Main()
|
/arkcompiler/runtime_core/docs/ |
D | aot.md | 115 `ark_aot` tool aims to compile input panda files into the single AOT file that can be consumed by 120 - `--panda-files` - list of input panda files to be compiled 122 - `--location` - path where panda files are actually stored in the device 126 directory then path to `arkstdlib.abc` should be specified via `--boot-panda-files` option. 136 - `--panda-files` parameter specifies list of `ark_aot` or `ark` necessary input panda files which … 140 `ark_aot --panda-files=file1.abc:file2.abc --output file.an` 148 ark_aot --panda-files file.abc --output file.an 152 ark_aot --panda-files file.abc --output file.an 156 ark_aot --panda-files file.abc --output file.an --location /local/data/tmp 162 There is tool, named `ark_aotdump`, that aims to dump content of AOT files in yaml format. It can p… [all …]
|
/arkcompiler/runtime_core/cmake/ |
D | TemplateBasedGen.cmake | 16 # Generate files based on templates and YAML data provided. 18 # with name ${data_name}_gen_${PROJECT_NAME} for ease of declaring dependencies on generated files. 22 # * TEMPLATES -- a list of templates to generate files 27 # * DESTINATION -- a directory for output files, default is ${PANDA_BINARY_ROOT} 28 # * EXTRA_DEPENDENCIES -- a list of files that should be considered as dependencies 29 # * EXTRA_ARGV -- a list of positional arguments that could be accessed in '.erb' files via ARGV[] 63 add_custom_target(${GEN_ARG_TARGET_NAME}) # Umbrella target for all generated files 87 # with name isa_gen_${PROJECT_NAME} for ease of declaring dependencies on generated files. 90 # * TEMPLATES -- a list of templates to generate files 94 # * DESTINATION -- a directory for output files, default is ${PANDA_BINARY_ROOT} [all …]
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/ |
D | README.md | 3 The tool reads ISA spec files and the given set of test files, then computes the coverage and outpu… 22 --testglob (-g) - glob for selecting test files in tests directory ("**/*.pa" for example), required 23 --spec (-s) - ISA spec files, comma-separated, merged into one if multiple specified, required 29 --orphaned (-o) - output list of test files that found not relevant to the current spec (the assert…
|
/arkcompiler/runtime_core/ |
D | .gitattributes | 1 #Set defaul end of lines for all files 3 # Denote all image files as binary
|
D | ark_config.gni | 70 # extra_dependencies -- a list of files that should be considered as dependencies, must be lable 177 # Generate files based on templates and YAML data provided. 179 # with name ${data_name}_gen_${PROJECT_NAME} for ease of declaring dependencies on generated files. 183 # * template_files -- a list of templates to generate files 188 # * destination -- a directory for output files, default is ${PANDA_BINARY_ROOT} 189 # * extra_dependencies -- a list of files that should be considered as dependencies 190 # * extra_argv -- a list of positional arguments that could be accessed in '.erb' files via ARGV[] 241 # with name isa_gen_${PROJECT_NAME} for ease of declaring dependencies on generated files. 244 # * template_files -- a list of templates to generate files 248 # * destination -- a directory for output files, default is ${target_out_dir} [all …]
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ |
D | MainEditor.js | 58 onDrop(files, x, y) { argument 59 if (files.length === 1) { 61 reader.readAsDataURL(files[0]); 64 this.onLoad(files[0].name, ret);
|
/arkcompiler/runtime_core/gn/ark/runtime_core/ |
D | ark_config.gni | 75 # extra_dependencies -- a list of files that should be considered as dependencies, must be lable 179 # Generate files based on templates and YAML data provided. 181 # with name ${data_name}_gen_${PROJECT_NAME} for ease of declaring dependencies on generated files. 185 # * template_files -- a list of templates to generate files 190 # * destination -- a directory for output files, default is ${PANDA_BINARY_ROOT} 191 # * extra_dependencies -- a list of files that should be considered as dependencies 192 # * extra_argv -- a list of positional arguments that could be accessed in '.erb' files via ARGV[] 243 # with name isa_gen_${PROJECT_NAME} for ease of declaring dependencies on generated files. 246 # * template_files -- a list of templates to generate files 250 # * destination -- a directory for output files, default is ${target_out_dir} [all …]
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | find_ts_files.py | 25 for root, dirs, files in os.walk(directory): 26 for file in files:
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/ |
D | README.md | 161 Total code_item section size of baseline files: 9201 bytes 162 Total code_item section size of compared files: 9162 bytes 164 Number of optimized files: 5 165 Number of not optimized files : 1 172 Statistics on optimized files: 174 Total code_item section size of baseline files: 8784 bytes 175 Total code_item section size of compared files: 8745 bytes
|
/arkcompiler/ets_frontend/arkguard/scripts/ |
D | grammarTestScript.js | 37 const files = fs.readdirSync(directoryPath); 39 for (const file of files) {
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | runner.py | 553 files = glob(glob_expression) 554 files = fnmatch.filter(files, self.test_root + '**' + self.args.filter) 556 self.tests += list(map(lambda f: func(f, flags), files)) 635 files = glob(glob_expression, recursive=True) 636 files = fnmatch.filter(files, path.join(directory, self.args.filter)) 656 files = filter(lambda f: f in test_list, files) 662 filter(lambda f: f not in skiplist, files))) 771 files = glob(glob_expression, recursive=True) 772 files = fnmatch.filter(files, ts_suite_dir + '**' + self.args.filter) 774 for f in files: [all …]
|
/arkcompiler/ets_runtime/ecmascript/quick_fix/ |
D | main.cpp | 71 std::string files = argv[argc - 1]; in Main() local 72 if (!base::StringHelper::EndsWith(files, ".abc")) { in Main() 102 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in Main() 104 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in Main()
|
/arkcompiler/ets_runtime/test/ |
D | runtest.py | 472 for root, lists, files in os.walk(dir): 473 for file in files: 490 files = self.find_file(self.args.name, [self.hap_abc, '.hap']) 491 if len(files): 493 file = files[0] 546 files = [] 551 files = self.find_file(self.args.name, self.types[self.step]) 552 if len(files): 553 self.run_test(files[0]) 564 files = self.find_file(self.args.name, self.types[self.step]) [all …]
|