Home
last modified time | relevance | path

Searched refs:sorted (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/openbmc/openbmc/meta-arm/scripts/
H A Dlayer-overview.py29 machines = sorted(p for p in layer.glob("conf/machine/*.conf"))
36 recipes = sorted((p for p in layer.glob("recipes-*/*/*.bb")), key=lambda p:p.name)
63 sublayers = sorted(p for p in base.glob("meta-*") if is_layer(p))
/openbmc/openbmc/poky/scripts/contrib/
H A Dlist-packageconfig-flags.py39 for pn in sorted(pkg_pn):
69 pkg_dict[pkgname] = sorted(pkgconfigflags.keys())
97 for pkgname in sorted(pkg_dict):
109 for flag in sorted(flag_dict):
110 print('%-*s%s' % (flag_len, flag, ' '.join(sorted(flag_dict[flag]))))
H A Dimage-manifest53 return sorted(pkglist)
87 return sorted(recipelist)
95 for recipe in sorted(recipelist):
234 for ap in sorted(assume_provided):
250 for p in sorted(packages):
258 for p in sorted(packages):
355 for pn in sorted(recipelist):
381 …rvalues[pn]['inherits'] = sorted({os.path.splitext(os.path.basename(r))[0] for r in lr if r not in…
/openbmc/openbmc-tools/tof-voters/libvoters/subcmd/
H A Dverify-files.py34 for filename in sorted(os.listdir(data_path)):
60 last_patch_set = sorted(
74 for project, file_name in sorted(unique_files):
H A Danalyze-commits.py42 for f in sorted(os.listdir(args.dir)):
81 for file_data in sorted(
/openbmc/qemu/scripts/
H A Dmeson-buildoptions.py117 choices = "/".join(sorted(opt["choices"]))
158 return sorted(json, key=lambda x: x["name"])
188 for opt in sorted(options, key=cli_help_key):
213 for opt in sorted(feature_opts, key=cli_option):
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/fixtures/
H A Dcheck_fixtures.py34 print("Active releases: %s" % sorted(active_releases))
35 print("Toaster configured releases: %s" % sorted(fixtures_releases))
/openbmc/openbmc/poky/scripts/
H A Dbuildstats-diff47 subpaths = sorted(glob.glob(path + '/*'))
83 for name, val in sorted(diff.new.items()):
89 for name, val in sorted(diff.dropped.items()):
96 for name, val in sorted(diff.rchanged.items()):
104 for name, val in sorted(diff.vchanged.items()):
112 for name, val in sorted(diff.echanged.items()):
177 tasks_diff = sorted(tasks_diff, key=attrgetter(field), reverse=reverse)
272 paths = sorted(buildstats_dir.iterdir())
/openbmc/openbmc/meta-openembedded/meta-multimedia/conf/include/
H A Dptest-packagelists-meta-multimedia.inc2 # Lists of the ptest in meta-multimedia, sorted into two sets by the time they take
3 # Please keep these sorted in alphabetical order
/openbmc/openbmc/meta-openembedded/meta-filesystems/conf/include/
H A Dptest-packagelists-meta-filesystems.inc2 # Lists of the ptest in meta-filesystems, sorted into two sets by the time they take
3 # Please keep these sorted in alphabetical order
/openbmc/openbmc/poky/meta/recipes-core/glibc/
H A Dglibc-ld.inc13 infos['ldconfig'] = ','.join(sorted(infos['ldconfig']))
14 infos['lddrewrite'] = ' '.join(sorted(infos['lddrewrite']))
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dpkgdata.py81 pkglist = sorted(result.output.split())
89 pkglist = sorted(result.output.split())
97 pkglist = sorted(result.output.split())
101 pkglist = sorted(result.output.split())
105 pkglist = sorted(result.output.split())
109 pkglist = sorted(result.output.split())
209 self.assertEqual(sorted(result.output.split()), sorted(desiredresult))
/openbmc/bmcweb/test/include/
H A Dhuman_sort_test.cpp51 std::set<std::string, AlphanumLess<std::string>> sorted{ in TEST() local
53 EXPECT_THAT(sorted, ElementsAreArray({"Alpha 2", "Alpha 10"})); in TEST()
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dbsp.py133 for tune in sorted(tunes.keys()):
151 for task in sorted(tasks.keys(), key=task_key):
170 next_line_key = (pn, sorted(signatures.values()))
174 … signature in sorted(signatures.keys(), key=lambda s: signatures[s])])
/openbmc/sdbusplus/tools/sdbusplus/
H A Dinterface.py57 return sorted(set(includes))
69 return sorted(set(includes))
92 return sorted(
/openbmc/phosphor-led-manager/manager/
H A Dmanager.cpp45 std::set<const Layout::GroupLayout*, Layout::CompareGroupLayout> sorted) in getNewMapWithGroupPriorities() argument
51 for (const auto* it : sorted) in getNewMapWithGroupPriorities()
84 std::set<const Layout::GroupLayout*, Layout::CompareGroupLayout> sorted; in getNewMap() local
90 sorted.insert(it); in getNewMap()
100 newState = getNewMapWithGroupPriorities(sorted); in getNewMap()
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dsiggen.py49 return dict(_set_object=list(sorted(obj)))
386 for dep in sorted(self.runtaskdeps[tid]):
389 for (f, cs) in sorted(self.file_checksum_values[tid], key=clean_checksum_file_path):
449 data['runtaskdeps'] = [dep[0] for dep in sorted(self.runtaskdeps[tid])]
451 for f,cs in sorted(self.file_checksum_values[tid], key=clean_checksum_file_path):
1043 …ependencies changed{color_default} from:\n%s\nto:\n%s") % (sorted(a_data['taskdeps']), sorted(b_da…
1050 for dep in sorted(changed):
1055 for dep in sorted(added):
1058 for dep in sorted(removed):
1064 for dep in sorted(changed):
[all …]
H A Ddata.py90 for key in sorted(todolist):
183 keys = sorted((key for key in d.keys() if not key.startswith("__")), key=isfunc)
186 for key in sorted(keys):
210 for key in sorted(keys):
222 for dep in sorted(deps):
269 for k in sorted(contains):
273 for item in sorted(contains[k]):
283 for r in sorted(removes):
430 alldeps = sorted(seen)
/openbmc/openbmc/poky/meta/recipes-core/ovmf/ovmf/
H A D0004-reproducible.patch94 + self.ResultFileList = sorted([str(T.Target) for T in MyAgo.CodaTargetList])
103 + for Cmd in sorted(self.GenFfsList):
112 + for SecOutputFile, SecDepsFile, SecCmd in sorted(self.FfsOutputFileList):
142 + for Type in sorted(self._AutoGenObject.Targets):
145 + for T in sorted(self._AutoGenObject.Targets[Type]):
156 + AsBuiltInfDict['binary_item'] = sorted(AsBuiltInfDict['binary_item'])
166 + SaveFileOnChange(self.TimeStampPath, "\n".join(sorted(FileSet)), False)
/openbmc/openbmc-build-scripts/scripts/
H A Dgenerate-html-index.py36 l_dirs = sorted(
46 l_files = sorted(
/openbmc/openbmc/meta-openembedded/meta-networking/conf/include/
H A Dptest-packagelists-meta-networking.inc2 # Lists of the ptest in meta-networking, sorted into two sets by the time they take
3 # Please keep these sorted in alphabetical order
/openbmc/openbmc-build-scripts/tools/
H A Downers141 for o in sorted(matcher.owners):
144 for r in sorted(matcher.reviewers):
162 for o in sorted(matcher.owners):
164 for r in sorted(matcher.reviewers):
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dcodeparser.py449 self.assertEqual(sorted(values.splitlines()),
450 sorted([expr,
468 self.assertEqual(sorted(values.splitlines()), sorted([varval]))
475 self.assertEqual(sorted(values.splitlines()), sorted([varval]))
494 self.assertEqual(sorted(values.splitlines()),
495 sorted([
/openbmc/openbmc/poky/documentation/tools/
H A Dupdate-documentation-conf98 for dkey in sorted(infos.keys()):
116 for dkey in sorted(infos.keys()):
135 for key in sorted(infos.keys()):
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ipk/
H A Dmanifest.py49 for pkg_type in sorted(pkgs):
50 for pkg in sorted(pkgs[pkg_type].split()):

12345678910>>...17