Home
last modified time | relevance | path

Searched refs:all (Results 1 - 25 of 60) sorted by relevance

123

/arkcompiler/runtime_core/isa/
H A Dasserts.rb21 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 Dasserts.rb21 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 Dmain.py52 "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 Dbenchmark.py43 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 Dets_templates_generator.py53 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 Dpreparation_step.py121 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 Dstandard_view.py52 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 Dxml_view.py79 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 Daarch64_fixup_sdiv.cpp62 return llvm::PreservedAnalyses::all(); in run()
78 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
H A Dexpand_atomics.cpp35 return llvm::PreservedAnalyses::all(); in run()
52 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
H A Dinsert_safepoints.cpp120 return llvm::PreservedAnalyses::all(); in run()
131 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
H A Dark_inlining.cpp53 return llvm::PreservedAnalyses::all(); in run()
122 return llvm::PreservedAnalyses::all(); in run()
H A Dfixup_poisons.cpp62 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
H A Dcheck_external.cpp69 return changed ? llvm::PreservedAnalyses::none() : llvm::PreservedAnalyses::all(); in run()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/
H A Dmark_always_inline.cpp49 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 Dmark_inline_module.cpp34 /// 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 Ddiscard_inline_module.cpp39 /// 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 Dglobal_intl_helper.cpp176 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 Dutils.rb22 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 Dutil_astchecker.py94 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 Dplugins_registry.py79 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 Drunner_file_based.py184 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 Dpromise.js44 var p4 = Promise.all([p, p2]);
/arkcompiler/runtime_core/static_core/scripts/
H A Dpython_linters.sh38 # - 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 Dcoverage.py60 Log.all(_LOGGER, f"Timeout when try execute {command}")
109 Log.all(_LOGGER, f"File with name {profraw_file} not exist")

Completed in 12 milliseconds

123