/external/python/cpython3/Lib/test/ |
D | test_sort.py | 4 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)]]
|
D | test_functools.py | 837 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 …]
|
D | list_tests.py | 7 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/ |
D | output.py | 134 rules.sort(key=util.cmp_to_key(rule_cmp)) 158 ras.sort(key=util.cmp_to_key(role_type_cmp))
|
D | util.py | 148 def cmp_to_key(mycmp): function 167 from functools import cmp_to_key
|
/external/python/cpython3/Doc/howto/ |
D | sorting.rst | 226 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/ |
D | sorting.rst | 239 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/ |
D | compat.py | 21 def cmp_to_key(mycmp): function
|
D | utils6.py | 76 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)
|
D | automaton.py | 446 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/ |
D | functools.py | 85 def cmp_to_key(mycmp): function
|
D | pstats.py | 28 from functools import cmp_to_key 234 stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare))
|
/external/python/cpython2/Doc/library/ |
D | functools.rst | 23 .. function:: cmp_to_key(func) 39 sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order
|
D | functions.rst | 1324 each element only once. Use :func:`functools.cmp_to_key` to convert an
|
D | stdtypes.rst | 1763 element only once. Use :func:`functools.cmp_to_key` to convert an
|
/external/libxml2/python/ |
D | generator.py | 806 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/ |
D | pstats.py | 29 from functools import cmp_to_key 250 stats_list.sort(key=cmp_to_key(TupleComp(sort_tuple).compare))
|
D | functools.py | 204 def cmp_to_key(mycmp): function 224 from _functools import cmp_to_key
|
/external/python/cpython2/Lib/unittest/ |
D | loader.py | 9 from functools import cmp_to_key as _CmpToKey
|
/external/python/cpython2/Lib/test/ |
D | test_functools.py | 493 self.assertEqual(sorted(range(5), key=functools.cmp_to_key(mycmp)), 499 key = functools.cmp_to_key(mycmp)
|
/external/python/cpython3/Lib/unittest/ |
D | loader.py | 239 testFnNames.sort(key=functools.cmp_to_key(self.sortTestMethodsUsing))
|
/external/python/cpython3/Doc/library/ |
D | functools.rst | 23 .. function:: cmp_to_key(func) 39 sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order
|
D | functions.rst | 1427 Use :func:`functools.cmp_to_key` to convert an old-style *cmp* function to a
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7b1.rst | 204 The functools module also adds cmp_to_key() as a tool to transition
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 822 * 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
|