Home
last modified time | relevance | path

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

12

/external/python/cpython3/Lib/test/
Dtest_sort.py4 from functools import cmp_to_key
18 raw.sort(key=cmp_to_key(compare))
103 s.sort(key=cmp_to_key(lambda a, b: int(random.random() * 3) - 1))
160 self.assertRaises(ValueError, L.sort, key=cmp_to_key(mutating_cmp))
165 self.assertRaises(ValueError, L.sort, key=cmp_to_key(mutating_cmp))
180 copy.sort(key=cmp_to_key(my_cmp))
256 data.sort(key=cmp_to_key(my_cmp), reverse=True)
257 copy1.sort(key=cmp_to_key(my_cmp_reversed))
349 [cmp_to_key(lambda x,y: x<y)(x) for x in range(100)]]
Dtest_functools.py837 key = self.cmp_to_key(cmp1)
844 key = self.cmp_to_key(cmp2)
853 key = self.cmp_to_key(mycmp=cmp1)
861 key = self.cmp_to_key() # too few args
863 key = self.cmp_to_key(cmp1, None) # too many args
864 key = self.cmp_to_key(cmp1)
873 key = self.cmp_to_key(cmp1)
888 key = self.cmp_to_key(mycmp=cmp1)
894 self.assertEqual(sorted(range(5), key=self.cmp_to_key(mycmp)),
902 values = sorted(values, key=self.cmp_to_key(mycmp))
[all …]
Dlist_tests.py7 from functools import cmp_to_key
452 u.sort(key=cmp_to_key(revcmp))
465 z.sort(key=cmp_to_key(myComparison))
478 key=cmp_to_key(selfmodifyingComparison))
/external/selinux/python/sepolgen/src/sepolgen/
Doutput.py134 rules.sort(key=util.cmp_to_key(rule_cmp))
158 ras.sort(key=util.cmp_to_key(role_type_cmp))
Dutil.py148 def cmp_to_key(mycmp): function
167 from functools import cmp_to_key
/external/python/cpython3/Doc/howto/
Dsorting.rst226 def cmp_to_key(mycmp):
249 from functools import cmp_to_key
253 >>> sorted([5, 2, 4, 1, 3], key=cmp_to_key(reverse_numeric))
256 In Python 3.2, the :func:`functools.cmp_to_key` function was added to the
/external/python/cpython2/Doc/howto/
Dsorting.rst239 def cmp_to_key(mycmp):
262 from functools import cmp_to_key
266 >>> sorted([5, 2, 4, 1, 3], key=cmp_to_key(reverse_numeric))
269 In Python 2.7, the :func:`functools.cmp_to_key` function was added to the
/external/scapy/scapy/
Dcompat.py21 def cmp_to_key(mycmp): function
Dutils6.py76 cset.sort(key=cmp_to_key(cset_sort)) # Sort with global addresses first
156 candidate_set.sort(key=cmp_to_key(rfc3484_cmp), reverse=True)
Dautomaton.py446 v.sort(key=cmp_to_key(lambda t1_f1,t2_f2: cmp(t1_f1[0],t2_f2[0])))
451 v.sort(key=cmp_to_key(lambda c1,c2: cmp(c1.atmt_prio,c2.atmt_prio)))
453 … actlst.sort(key=cmp_to_key(lambda c1,c2: cmp(c1.atmt_cond[condname], c2.atmt_cond[condname])))
/external/python/cpython2/Lib/
Dfunctools.py85 def cmp_to_key(mycmp): function
Dpstats.py28 from functools import cmp_to_key
234 stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare))
/external/python/cpython2/Doc/library/
Dfunctools.rst23 .. function:: cmp_to_key(func)
39 sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order
Dfunctions.rst1324 each element only once. Use :func:`functools.cmp_to_key` to convert an
Dstdtypes.rst1763 element only once. Use :func:`functools.cmp_to_key` to convert an
/external/libxml2/python/
Dgenerator.py806 def cmp_to_key(mycmp): function
943 flist = sorted(flist, key=cmp_to_key(functionCompare))
1077 flist = sorted(flist, key=cmp_to_key(functionCompare))
/external/python/cpython3/Lib/
Dpstats.py29 from functools import cmp_to_key
250 stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare))
Dfunctools.py204 def cmp_to_key(mycmp): function
224 from _functools import cmp_to_key
/external/python/cpython2/Lib/unittest/
Dloader.py9 from functools import cmp_to_key as _CmpToKey
/external/python/cpython2/Lib/test/
Dtest_functools.py493 self.assertEqual(sorted(range(5), key=functools.cmp_to_key(mycmp)),
499 key = functools.cmp_to_key(mycmp)
/external/python/cpython3/Lib/unittest/
Dloader.py239 testFnNames.sort(key=functools.cmp_to_key(self.sortTestMethodsUsing))
/external/python/cpython3/Doc/library/
Dfunctools.rst23 .. function:: cmp_to_key(func)
39 sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order
Dfunctions.rst1427 Use :func:`functools.cmp_to_key` to convert an old-style *cmp* function to a
/external/python/cpython2/Misc/NEWS.d/
D2.7b1.rst204 The functools module also adds cmp_to_key() as a tool to transition
/external/python/cpython3/Doc/whatsnew/
D3.2.rst822 * To aid in porting programs from Python 2, the :func:`functools.cmp_to_key`
827 >>> sorted(iterable, key=cmp_to_key(locale.strcoll)) # doctest: +SKIP

12