/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/ |
H A D | test_metadata.py | 41 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 D | test_doclet.py | 267 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 D | test_cli.py | 47 test.assertTrue(args.tags == set())
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | doclet.py | 88 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 D | generate.py | 195 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 D | unit.py | 54 tags: Optional[Iterable[str]] = None, 65 tags=norm_list(tags),
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/generator/ |
H A D | command.rb | 71 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 D | test_base.rb | 42 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 D | single_test.rb | 43 tags = @command[Generator::TEST_TAGS] || [] 47 write_runner_options content, run_options, ignore, bugids, tags, description, test_panda_options
|
H A D | test_case.rb | 57 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 D | command.rb | 71 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 D | test_base.rb | 42 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 D | single_test.rb | 43 tags = @command[Generator::TEST_TAGS] || [] 47 write_runner_options content, run_options, ignore, bugids, tags, description, test_panda_options
|
H A D | test_case.rb | 57 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 D | tagged_index.h | 101 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 D | test_ets.py | 56 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 D | preparation_step.py | 218 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 D | conf.py | 43 if tags.has('ispdf'):
|
/arkcompiler/runtime_core/static_core/plugins/ets/doc/system_arkts/ |
H A D | conf.py | 43 if tags.has('ispdf'):
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/ |
H A D | single_test_runner.rb | 34 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 D | single_test_runner.rb | 34 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 D | mpl_logging.cpp | 36 const char *tags[] = { member
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file_item_container.cpp | 307 const auto &tags = annotation_item->GetTags(); in DeduplicateAnnotationValue() local 310 auto tag = tags[i]; in DeduplicateAnnotationValue()
|
H A D | file_items.h | 1749 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 D | file_item_container.cpp | 339 const auto &tags = annotationItem->GetTags(); in DeduplicateAnnotationValue() local 342 auto tag = tags[i]; in DeduplicateAnnotationValue()
|