/arkcompiler/runtime_core/isa/ |
H A D | asserts.rb | 21 each_cons(2).all? { |a, b| (a <=> b) <= 0 } 50 end.all? 56 end.all? 64 end.all? 104 end.all? 110 end.all? 118 end.all? 124 end.all? 128 Panda.instructions.select(&:conditional?).map(&:jump?).all? 134 end.all [all...] |
/arkcompiler/runtime_core/static_core/isa/ |
H A D | asserts.rb | 21 each_cons(2).all? { |a, b| (a <=> b) <= 0 } 50 end.all? 56 end.all? 64 end.all? 104 end.all? 110 end.all? 118 end.all? 124 end.all? 128 Panda.instructions.select(&:conditional?).map(&:jump?).all? 134 end.all [all...] |
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/ |
H A D | main.py | 52 "or use special value `all` to use all available cores.") 66 Log.all(logger, f"Runner {runner.name} started") 68 Log.all(logger, f"Runner {runner.name} finished") 70 Log.all(logger, f"Runner {runner.name}: {failed_tests} failed tests")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/ |
H A D | benchmark.py | 43 Log.all(_LOGGER, f"Generating test: {self.__name}") 48 Log.all(_LOGGER, f"Starting generate test template: {self.__name}") 61 Log.all(_LOGGER, f"Finish generating test template for: {self.__name}")
|
H A D | ets_templates_generator.py | 53 Log.all(_LOGGER, "Starting generate test") 65 Log.all(_LOGGER, "Generation finished!")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ |
H A D | preparation_step.py | 121 Renders all templates and saves them. 124 Log.all(_LOGGER, f"ERROR: {str(template_root_path.absolute())} must be a directory") 172 'all required tools are installed (see tests-u-runner/readme.md#ets-es-checked-dependencies)') 260 help="Path to output directory. Output directory and all" + 273 Log.all(_LOGGER, f'Error: {inv_format_exp.message}') 276 Log.all(_LOGGER, f'Error: {inv_fs_exp.message}') 279 Log.all(_LOGGER, f"{unknown_template_exp.filepath}: exception while processing template:") 280 Log.all(_LOGGER, f"\t {repr(unknown_template_exp.exception)}") 282 Log.all(_LOGGER, "Finished")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
H A D | standard_view.py | 52 Log.all(_LOGGER, "") 58 Log.all(_LOGGER, f"Ignored but passed tests - {len(ignored_but_passed)} tests:\n{content}") 87 Log.all(_LOGGER, f"Save list of new failures to {new_failures_path}") 134 Log.all(_LOGGER, f"Time report saved to {time_report_path}")
|
H A D | xml_view.py | 79 Log.all(_LOGGER, f"Save {xml_report_path}") 85 Log.all(_LOGGER, f"Save {ignore_list_path}")
|
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
H A D | aarch64_fixup_sdiv.cpp | 62 return llvm::PreservedAnalyses::all(); in run() 78 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
|
H A D | expand_atomics.cpp | 35 return llvm::PreservedAnalyses::all(); in run() 52 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
|
H A D | insert_safepoints.cpp | 120 return llvm::PreservedAnalyses::all(); in run() 131 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
|
H A D | ark_inlining.cpp | 53 return llvm::PreservedAnalyses::all(); in run() 122 return llvm::PreservedAnalyses::all(); in run()
|
H A D | fixup_poisons.cpp | 62 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
|
H A D | check_external.cpp | 69 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/ |
H A D | mark_always_inline.cpp | 49 return llvm::PreservedAnalyses::all(); in run() 56 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run() 81 // 1. Called in all interpreter handlers in InlineCallTree()
|
H A D | mark_inline_module.cpp | 34 /// Mark all functions and global variables from inline module with FUNCTION_MD_INLINE_MODULE metadata 38 return module.global_objects().empty() ? llvm::PreservedAnalyses::all() : llvm::PreservedAnalyses::none(); in run()
|
H A D | discard_inline_module.cpp | 39 /// Discard all functions and global variables from inline module 47 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
|
/arkcompiler/ets_runtime/ecmascript/intl/ |
H A D | global_intl_helper.cpp | 176 std::vector<std::string> all; in OptionsWithDataFormatter() local 178 all = {"year", "month", "day", "hour", "minute", "second"}; in OptionsWithDataFormatter() 181 all = {"year", "month", "day"}; in OptionsWithDataFormatter() 184 all = {"hour", "minute", "second"}; in OptionsWithDataFormatter() 186 for (auto &item : all) { in OptionsWithDataFormatter()
|
/arkcompiler/runtime_core/static_core/libpandabase/ |
H A D | utils.rb | 22 raise "Use safe_intrinsic option instead of manually set clear_flags for intrinsic '#{name}'" if !safe_intrinsic? && safe_flags.all?{ |flag| flags.include?(flag) }
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/ |
H A D | util_astchecker.py | 94 Checks if `node` contains all key:value pairs specified in `properties` dict argument 233 Finds all descendants of `root` with location starting at `loc` 261 Takes AST and runs tests on it, returns True if all tests passed 263 Log.all(_LOGGER, f'Running {len(tests)} tests...') 275 Log.all(_LOGGER, f'PASS: {test_name}') 277 Log.all(_LOGGER, f'FAIL: {test_name} in {test_file}') 283 Log.all(_LOGGER, f'FAIL: {test_file}: number of expected errors {expected_errors} ' 287 Log.all(_LOGGER, 'All tests passed') 290 Log.all(_LOGGER, f'Failed {failed_tests} tests')
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
H A D | plugins_registry.py | 79 Log.all(_LOGGER, f"Found extra file '{plugin_path}' at plugins folder") 102 Log.all(_LOGGER, f"Registered plugin '{runner_name}' with class '{runner.__name__}'")
|
H A D | runner_file_based.py | 184 Log.all(_LOGGER, "Generate quick stdlib") 192 Log.all(_LOGGER, f"quick stdlib: {' '.join(cmd)}") 211 Log.all(_LOGGER, "Create html report for coverage") 218 Log.all(_LOGGER, "Processing run statistics") 326 Log.all(_LOGGER, f"Loading {kind} test lists: {test_lists}")
|
/arkcompiler/ets_runtime/test/moduletest/promise/ |
H A D | promise.js | 44 var p4 = Promise.all([p, p2]);
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | python_linters.sh | 38 # - R1710 - number and types of return values in all function branches should be the same 93 # Check all files with '.py' extensions except *conf.py which are config files for sphinx 95 pylint -s false --timeout-methods subprocess.Popen.communicate --disable=all -e "${PYLINT_RULES}" "${file_to_check}"
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/code_coverage/ |
H A D | coverage.py | 60 Log.all(_LOGGER, f"Timeout when try execute {command}") 109 Log.all(_LOGGER, f"File with name {profraw_file} not exist")
|