| /arkcompiler/ets_runtime/test/moduletest/regexpflagd/ |
| D | regexpflagd.js | 30 print(result.indices.groups.first); 31 print(result.indices.groups.last); 32 print(result.groups.first); 33 print(result.groups.last); 39 print(result.indices.groups.first); 40 print(result.indices.groups.last); 41 print(result.groups.first); 42 print(result.groups.last); 47 print(result2.groups);
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
| D | options_groups.py | 40 @value(yaml_path="test-lists.groups.quantity", cli_name="groups", cast_to_type=_to_int) 45 @value(yaml_path="test-lists.groups.number", cli_name="group_number", cast_to_type=_to_int) 57 @value(yaml_path="test-lists.groups.chapters", cli_name="chapters") 62 @value(yaml_path="test-lists.groups.chapters-file", cli_name="chapters_file")
|
| D | options_test_lists.py | 46 "groups": self.groups.to_dict(), 49 groups = GroupsOptions() variable in TestListsOptions
|
| D | cli_options.py | 135 # Test groups options 137 "Test groups", 138 "allowing to divide tests into groups and run groups separately") 140 '--groups', action='store', dest='groups', 141 type=lambda arg: check_int(arg, "--groups", is_zero_allowed=False), 143 help='Quantity of groups used for automatic division. ' 149 help='run tests only of specified group number. Used only if --groups is set. ' 151 'If the value is more than the total number of groups the latest group is taken.')
|
| /arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
| D | thread.cpp | 88 std::vector<gid_t> groups(groupCount); in GetGroups() local 89 groupCount = getgroups(groupCount, groups.data()); in GetGroups() 94 groups.resize(groupCount); in GetGroups() 97 if (std::find(groups.begin(), groups.end(), egid) == groups.end()) { in GetGroups() 98 groups.push_back(egid); in GetGroups() 101 return groups; in GetGroups()
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
| D | runner_base.py | 270 if self.config.test_lists.groups.quantity > 1: 271 groups = self.config.test_lists.groups.quantity 272 n_group = self.config.test_lists.groups.number 273 n_group = n_group if n_group <= groups else groups 276 if get_group_number(test.path, groups) == n_group 302 if self.config.test_lists.filter != "*" and self.config.test_lists.groups.chapters: 314 if self.config.test_lists.groups.chapters: 324 for chapter in self.config.test_lists.groups.chapters: 330 if path.isfile(self.config.test_lists.groups.chapters_file): 331 chapters = Chapters(self.config.test_lists.groups.chapters_file) [all …]
|
| /arkcompiler/ets_frontend/ets2panda/lexer/scripts/ |
| D | keywords.rb | 67 groups = [s_kw, Set.new(desc&.keyword_like), Set.new(desc&.custom_handler)] 68 groups.combination(2).each { |a,b| raise "Conflicting keyword type" unless (a & b).empty? } 71 groups.each { |group| active.merge(group) }
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
| D | unit.py | 86 tmp = m.groups() 97 if mtch.groups()[0] != self.name: 99 mtch.groups()[0], self.name) 100 avg_time = float(mtch.groups()[1])
|
| D | shell.py | 53 if len(m.groups()) < 1: 67 self.ret = int(matches.groups()[0]) 75 tmp = tm_val.groups()
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
| D | spec.rb | 34 nt_data['groups']&.each do |ntg| 35 spec_group = @data['groups'].find { |sg| sg['title'] == ntg['title'] } 61 … %w[prefixes groups properties exceptions verification version min_version chapters].each do |attr| 71 @data['groups'].each do |g| 211 spec_group = @data['groups'].find { |g| g['title'] == test_group['title'] }
|
| D | summary.rb | 59 { 'groups' => @uncovered_assertions } 63 @spec.data['groups'].each do |g|
|
| D | uncovered_md.rb | 27 @uncovered = uncovered['groups']
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/ |
| D | spec.rb | 34 nt_data['groups']&.each do |ntg| 35 spec_group = @data['groups'].find { |sg| sg['title'] == ntg['title'] } 61 … %w[prefixes groups properties exceptions verification version min_version chapters].each do |attr| 71 @data['groups'].each do |g| 211 spec_group = @data['groups'].find { |g| g['title'] == test_group['title'] }
|
| D | summary.rb | 59 { 'groups' => @uncovered_assertions } 63 @spec.data['groups'].each do |g|
|
| D | uncovered_md.rb | 27 @uncovered = uncovered['groups']
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/ |
| D | ProcessTest.sts | 102 } else if (output[i].startsWith("Groups:")) { 103 let tokens = output[i].replace("Groups:", "").split("\t"); 252 let groups = process.groups; 255 let key : String = "groups" + i; 259 res += attributes.get(key) == groups[i - 1] ? 0 : 1; 391 failures += test(testGetGroups(attributes), "process.groups test");
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/escompat/ |
| D | Process.cpp | 392 auto groups = ark::os::thread::GetGroups(); in GetGroupIDs() local 393 auto groupIds = std::vector<ets_double>(groups.begin(), groups.end()); in GetGroupIDs() 395 auto result = env->NewDoubleArray(groups.size()); in GetGroupIDs() 397 if (groups.empty()) { in GetGroupIDs() 399 env->ThrowErrorNew(exceptionClass, "Failed to get process groups"); in GetGroupIDs() 403 env->SetDoubleArrayRegion(result, 0, groups.size(), groupIds.data()); in GetGroupIDs()
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/templates/ |
| D | report.erb | 26 Coverage by Groups:<% rep['coverage_by_groups'].each do |g| %>
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/ |
| D | report.erb | 26 Coverage by Groups:<% rep['coverage_by_groups'].each do |g| %>
|
| /arkcompiler/runtime_core/isa/templates/ |
| D | isa.md.erb | 26 % Panda::groups.each do |g|
|
| /arkcompiler/runtime_core/static_core/isa/templates/ |
| D | isa.md.erb | 26 % Panda::groups.each do |g|
|
| /arkcompiler/runtime_core/static_core/isa/ |
| D | combine.rb | 22 data['groups'].flat_map { |g| g['instructions'] }
|
| /arkcompiler/runtime_core/isa/ |
| D | combine.rb | 22 data['groups'].flat_map { |g| g['instructions'] }
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/config/ |
| D | non_testable.yaml | 15 groups:
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | Process.sts | 312 * Get groups to which the current process belongs 314 * @returns groups as number array 316 static get groups(): number[] {
|