/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | MSVSNew.py | 100 self.entries = sorted(entries or [], key=attrgetter("path")) 252 all_entries = sorted(all_entries, key=attrgetter("path"))
|
/third_party/libinput/tools/ |
H A D | libinput-measure-touchpad-tap.py | 171 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 D | razer-quirks-lister.py | 67 for kbd in sorted(keyboards, key=lambda k: k.vid << 16 | k.pid):
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | gen_extensions.py | 341 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 D | console_printer.py | 183 for entity, uses in sorted(broken.items())), 191 missing = list(sorted(missing))
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-ucd-table.py | 41 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 D | gen-os2-unicode-ranges.py | 3 """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 D | test_modulefinder.py | 343 modules = sorted(set(modules)) 344 found = sorted(mf.modules)
|
H A D | test_keywordonlyarg.py | 22 return sorted(list(nums), reverse=reverse) 25 return sorted(list(words), reverse=reverse)
|
H A D | test_itertools.py | 258 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 D | autocomplete.py | 163 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 D | gn_to_bp.py | 561 p = sorted(platforms.difference({ desired })) 608 lst = sorted(lst)
|
/third_party/skia/buildtools/checkdeps/ |
H A D | checkdeps_test.py | 197 self.assertEqual(filenames, sorted(filenames)) 202 self.assertEqual(dirs_traversed, sorted(dirs_traversed))
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | run_code_generation.py | 221 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 D | syscall-counts.py | 63 for id, val in sorted(syscalls.items(),
|
H A D | syscall-counts-by-pid.py | 73 for id, val in sorted(syscalls[comm][pid].items(),
|
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | syscall-counts.py | 63 for id, val in sorted(syscalls.items(),
|
H A D | syscall-counts-by-pid.py | 73 for id, val in sorted(syscalls[comm][pid].items(),
|
/third_party/node/test/fixtures/wpt/performance-timeline/ |
H A D | performanceobservers.js | 31 // 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 D | list_test_changes.py | 80 for x in sorted(res):
|
/third_party/gn/tools/ |
H A D | find_unreachable.py | 74 print('\n'.join(sorted(result)))
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_constant_expressions.py | 22 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 D | sexps.py | 102 return sorted(decls) + other_code
|
/third_party/node/tools/ |
H A D | utils.py | 117 return sorted(list)
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/i18n/ |
H A D | PhoneRegionTest.java | 31 assertThat(Stream.of(r("US"), r("GB"), r("AE"), r("001"), r("KR"), r("MN")).sorted()) in testOrdering()
|