Home
last modified time | relevance | path

Searched refs:sorted (Results 226 - 250 of 773) sorted by relevance

12345678910>>...31

/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A DMSVSNew.py100 self.entries = sorted(entries or [], key=attrgetter("path"))
252 all_entries = sorted(all_entries, key=attrgetter("path"))
/third_party/libinput/tools/
H A Dlibinput-measure-touchpad-tap.py171 deltas = sorted(t.tdelta for t in self.touches)
202 # Group 1, sorted by time of occurrence
206 # Group 2, sorted by touch down-up delta time (ascending)
215 deltas_sorted = sorted(deltas, key=lambda t: t.tdelta)
H A Drazer-quirks-lister.py67 for kbd in sorted(keyboards, key=lambda k: k.vid << 16 | k.pid):
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dgen_extensions.py341 return sorted(ext_infos, key=lambda e: e['name_camel_case'].lower())
435 for (ext_name, vendors) in sorted(ext_name_to_vendors.items()):
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dconsole_printer.py183 for entity, uses in sorted(broken.items())),
191 missing = list(sorted(missing))
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-ucd-table.py41 dm1 = sorted(set(v for v in dm.values() if len(v) == 1))
47 dm2 = sorted((v+(i if i not in ce and not ccc[i] else 0,), v)
H A Dgen-os2-unicode-ranges.py3 """Generates the code for a sorted unicode range array as used in hb-ot-os2-unicode-ranges.hh
41 all_ranges = sorted(all_ranges, key=lambda t: t[0])
/third_party/python/Lib/test/
H A Dtest_modulefinder.py343 modules = sorted(set(modules))
344 found = sorted(mf.modules)
H A Dtest_keywordonlyarg.py22 return sorted(list(nums), reverse=reverse)
25 return sorted(list(words), reverse=reverse)
H A Dtest_itertools.py258 if sorted(indices) == list(indices):
275 self.assertEqual(result, sorted(result)) # lexicographic order
279 self.assertEqual(list(c), sorted(c)) # keep original ordering
340 if sorted(indices) == list(indices):
355 self.assertEqual(result, sorted(result)) # lexicographic order
367 self.assertEqual(list(c), sorted(c)) # keep original ordering
438 self.assertEqual(result, sorted(result)) # lexicographic order
481 self.assertEqual(prod, sorted(set(prod)))
482 self.assertEqual(cwr, sorted(set(cwr)))
483 self.assertEqual(perm, sorted(se
[all...]
/third_party/python/Lib/idlelib/
H A Dautocomplete.py163 is a sublist of the second. Both are sorted.
189 smalll = sorted(eval("__all__", namespace))
198 smalll = sorted(entity.__all__)
/third_party/skia/gn/
H A Dgn_to_bp.py561 p = sorted(platforms.difference({ desired }))
608 lst = sorted(lst)
/third_party/skia/buildtools/checkdeps/
H A Dcheckdeps_test.py197 self.assertEqual(filenames, sorted(filenames))
202 self.assertEqual(dirs_traversed, sorted(dirs_traversed))
/third_party/skia/third_party/externals/angle2/scripts/
H A Drun_code_generation.py221 for name, script in sorted(generators.items()):
260 for name, script in sorted(generators.items()):
/kernel/linux/linux-5.10/tools/perf/scripts/python/
H A Dsyscall-counts.py63 for id, val in sorted(syscalls.items(),
H A Dsyscall-counts-by-pid.py73 for id, val in sorted(syscalls[comm][pid].items(),
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H A Dsyscall-counts.py63 for id, val in sorted(syscalls.items(),
H A Dsyscall-counts-by-pid.py73 for id, val in sorted(syscalls[comm][pid].items(),
/third_party/node/test/fixtures/wpt/performance-timeline/
H A Dperformanceobservers.js31 // Ensure the entries list is sorted by startTime.
37 var sorted = false;
41 assert_less_than_equal(lastStartTime, currStartTime, "entry list must be sorted by startTime");
/third_party/vk-gl-cts/scripts/
H A Dlist_test_changes.py80 for x in sorted(res):
/third_party/gn/tools/
H A Dfind_unreachable.py74 print('\n'.join(sorted(result)))
/third_party/mesa3d/src/compiler/nir/
H A Dnir_constant_expressions.py22 return sorted(list(sizes)) if sizes is not None else None
458 % for name, op in sorted(opcodes.items()):
501 % for name in sorted(opcodes.keys()):
/third_party/mesa3d/src/compiler/glsl/tests/
H A Dsexps.py102 return sorted(decls) + other_code
/third_party/node/tools/
H A Dutils.py117 return sorted(list)
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/i18n/
H A DPhoneRegionTest.java31 assertThat(Stream.of(r("US"), r("GB"), r("AE"), r("001"), r("KR"), r("MN")).sorted()) in testOrdering()

Completed in 10 milliseconds

12345678910>>...31