Home
last modified time | relevance | path

Searched refs:tags (Results 1 - 25 of 29) sorted by relevance

12

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/
H A Dtest_metadata.py41 def __init__(self, tags: Optional[List[str]] = None) -> None:
42 self.__compile_only = Tags.__contains(Tags.EtsTag.COMPILE_ONLY.value, tags)
43 self.__negative = Tags.__contains(Tags.EtsTag.NEGATIVE.value, tags)
44 self.__not_a_test = Tags.__contains(Tags.EtsTag.NOT_A_TEST.value, tags)
45 self.__no_warmup = Tags.__contains(Tags.EtsTag.NO_WARMUP.value, tags)
64 def __contains(tag: str, tags: Optional[List[str]]) -> bool:
65 return tag in tags if tags is not None else False
70 tags: Tags
96 metadata['tags']
[all...]
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
H A Dtest_doclet.py267 tags = parser.state.tags
268 test.assertTrue(2 == len(tags))
269 test.assertTrue('StdLib' in tags)
270 test.assertTrue('StdLib_Math' in tags)
290 tags = parser.state.tags
291 test.assertTrue(3 == len(tags))
293 test.assertTrue(t in tags)
400 test.assertTrue(set(parser.state.tags)
[all...]
H A Dtest_cli.py47 test.assertTrue(args.tags == set())
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Ddoclet.py88 tags: List[str] = field(default_factory=list)
100 tags: List[str] = field(default_factory=list)
179 self.state = BenchClass(name=class_name, tags=self.__pending_tags,
203 tags=self.__pending_tags, bugs=self.__pending_bugs))
225 self.state.tags += self.__pending_tags
327 tags: Any = None
342 tags_filter = args.tags if args else []
354 # check tags filter:
355 tags = set(parsed.tags
[all...]
H A Dgenerate.py195 tags = set(values.tags)
196 values.tags = ';'.join([str(t) for t in tags])
226 return BenchUnit(bench_dir, src=src.full, tags=tags, bugs=bugs)
H A Dunit.py54 tags: Optional[Iterable[str]] = None,
65 tags=norm_list(tags),
/arkcompiler/runtime_core/static_core/tests/cts-generator/generator/
H A Dcommand.rb71 tags = template_case[Generator::TEST_TEMPLATE_CASE_TAG] || []
80 process_case_values file_name, current_case, index, sig_name, test_dir, template, bugids, ignore, tags
97 def process_case_values(file_name, current_case, index, sig_name, test_dir, template, bugids, ignore, tags)
101 output = test_case.create_single_test_case bugids, ignore, tags
H A Dtest_base.rb42 def write_runner_options(content, run_options, ignore, bugids, tags, description, test_panda_options)
49 tags.append 'ignore' if ignore
50 content.puts "## runner-option: tags: #{tags.join ', '}" if tags.length > 0
H A Dsingle_test.rb43 tags = @command[Generator::TEST_TAGS] || []
47 write_runner_options content, run_options, ignore, bugids, tags, description, test_panda_options
H A Dtest_case.rb57 def create_single_test_case(bugids, ignore, tags)
77 write_runner_options content, run_options, ignore_case, bugids + bugids_test + bugids_case, tags_test + tags + tags_case,
/arkcompiler/runtime_core/tests/cts-generator/generator/
H A Dcommand.rb71 tags = template_case[Generator::TEST_TEMPLATE_CASE_TAG] || []
80 process_case_values file_name, current_case, index, sig_name, test_dir, template, bugids, ignore, tags
97 def process_case_values(file_name, current_case, index, sig_name, test_dir, template, bugids, ignore, tags)
101 output = test_case.create_single_test_case bugids, ignore, tags
H A Dtest_base.rb42 def write_runner_options(content, run_options, ignore, bugids, tags, description, test_panda_options)
49 tags.append 'ignore' if ignore
50 content.puts "## runner-option: tags: #{tags.join ', '}" if tags.length > 0
H A Dsingle_test.rb43 tags = @command[Generator::TEST_TAGS] || []
47 write_runner_options content, run_options, ignore, bugids, tags, description, test_panda_options
H A Dtest_case.rb57 def create_single_test_case(bugids, ignore, tags)
77 write_runner_options content, run_options, ignore_case, bugids + bugids_test + bugids_case, tags_test + tags + tags_case,
/arkcompiler/runtime_core/static_core/verification/util/
H A Dtagged_index.h101 static constexpr void SetTags(const typename T::Type &tag, const typename Tag::Type &...tags, Int &val) in SetTags() argument
112 Base::template SetTags<Int, SHIFT>(std::forward<const typename Tag::Type>(tags)..., val); in SetTags()
160 explicit TaggedIndexHelper0(typename Tags::Type... tags, Int idx) in TaggedIndexHelper0() argument
162 AllTags::template SetTags<UInt, INT_BITS>(std::forward<typename Tags::Type>(tags)..., value_); in TaggedIndexHelper0()
303 explicit TaggedIndexSelectorH(typename Tags::Type... tags, Int &val) in TaggedIndexSelectorH() argument
304 : Base {std::forward<typename Tags::Type>(tags)..., val} in TaggedIndexSelectorH()
319 explicit TaggedIndexSelectorH(typename Tags::Type... tags, size_t &val) in TaggedIndexSelectorH() argument
320 : Base {std::forward<typename Tags::Type>(tags)..., val} in TaggedIndexSelectorH()
336 explicit TaggedIndexSelector(typename Tags::Type... tags, Int &val) in TaggedIndexSelector() argument
337 : Base {std::forward<typename Tags::Type>(tags) in TaggedIndexSelector()
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
H A Dtest_ets.py56 negative_runtime_metadata = self.metadata.tags.negative and not self.metadata.tags.compile_only
62 return self.metadata.tags.negative and self.metadata.tags.compile_only
67 return self.metadata.tags.compile_only
72 return not self.metadata.tags.not_a_test
H A Dpreparation_step.py218 is_convert = not metadata.tags.not_a_test and \
219 not metadata.tags.compile_only and \
220 not metadata.tags.no_warmup
/arkcompiler/runtime_core/static_core/plugins/ets/doc/stdlib/
H A Dconf.py43 if tags.has('ispdf'):
/arkcompiler/runtime_core/static_core/plugins/ets/doc/system_arkts/
H A Dconf.py43 if tags.has('ispdf'):
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/
H A Dsingle_test_runner.rb34 if k.include? 'tags:'
35 tags = TestRunner.split_separated_by_colon k
36 h['tags'] = tags
92 !(@runner_options['tags'] & $exclude_list || []).empty?
96 !(@runner_options['tags'] & $include_list || []).empty?
265 @reporter.verbose_log "tags = #{@runner_options['tags']}"
/arkcompiler/runtime_core/tests/cts-generator/runner/
H A Dsingle_test_runner.rb34 if k.include? 'tags:'
35 tags = TestRunner.split_separated_by_colon k
36 h['tags'] = tags
99 !(@runner_options['tags'] & $exclude_list || []).empty?
103 !(@runner_options['tags'] & $include_list || []).empty?
273 @reporter.verbose_log "tags = #{@runner_options['tags']}"
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
H A Dmpl_logging.cpp36 const char *tags[] = { member
/arkcompiler/runtime_core/libpandafile/
H A Dfile_item_container.cpp307 const auto &tags = annotation_item->GetTags(); in DeduplicateAnnotationValue() local
310 auto tag = tags[i]; in DeduplicateAnnotationValue()
H A Dfile_items.h1749 AnnotationItem(BaseClassItem *cls, std::vector<Elem> elements, std::vector<Tag> tags) in AnnotationItem() argument
1750 : class_(cls), elements_(std::move(elements)), tags_(std::move(tags)) in AnnotationItem()
1784 void SetTags(std::vector<Tag> &&tags) in SetTags() argument
1786 tags_ = std::move(tags); in SetTags()
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dfile_item_container.cpp339 const auto &tags = annotationItem->GetTags(); in DeduplicateAnnotationValue() local
342 auto tag = tags[i]; in DeduplicateAnnotationValue()

Completed in 17 milliseconds

12