Home
last modified time | relevance | path

Searched refs:mycmp (Results 1 – 11 of 11) sorted by relevance

/external/scapy/scapy/
Dcompat.py21 def cmp_to_key(mycmp): argument
34 return mycmp(self.obj, other.obj) < 0
36 return mycmp(self.obj, other.obj) > 0
38 return mycmp(self.obj, other.obj) == 0
40 return mycmp(self.obj, other.obj) <= 0
42 return mycmp(self.obj, other.obj) >= 0
44 return mycmp(self.obj, other.obj) != 0
/external/python/cpython2/Lib/
Dfunctools.py85 def cmp_to_key(mycmp): argument
92 return mycmp(self.obj, other.obj) < 0
94 return mycmp(self.obj, other.obj) > 0
96 return mycmp(self.obj, other.obj) == 0
98 return mycmp(self.obj, other.obj) <= 0
100 return mycmp(self.obj, other.obj) >= 0
102 return mycmp(self.obj, other.obj) != 0
/external/selinux/python/sepolgen/src/sepolgen/
Dutil.py148 def cmp_to_key(mycmp): argument
154 return mycmp(self.obj, other.obj) < 0
156 return mycmp(self.obj, other.obj) > 0
158 return mycmp(self.obj, other.obj) == 0
160 return mycmp(self.obj, other.obj) <= 0
162 return mycmp(self.obj, other.obj) >= 0
164 return mycmp(self.obj, other.obj) != 0
/external/python/cpython3/Doc/howto/
Dsorting.rst226 def cmp_to_key(mycmp):
232 return mycmp(self.obj, other.obj) < 0
234 return mycmp(self.obj, other.obj) > 0
236 return mycmp(self.obj, other.obj) == 0
238 return mycmp(self.obj, other.obj) <= 0
240 return mycmp(self.obj, other.obj) >= 0
242 return mycmp(self.obj, other.obj) != 0
/external/python/cpython2/Doc/howto/
Dsorting.rst239 def cmp_to_key(mycmp):
245 return mycmp(self.obj, other.obj) < 0
247 return mycmp(self.obj, other.obj) > 0
249 return mycmp(self.obj, other.obj) == 0
251 return mycmp(self.obj, other.obj) <= 0
253 return mycmp(self.obj, other.obj) >= 0
255 return mycmp(self.obj, other.obj) != 0
/external/python/cpython3/Lib/
Dfunctools.py204 def cmp_to_key(mycmp): argument
211 return mycmp(self.obj, other.obj) < 0
213 return mycmp(self.obj, other.obj) > 0
215 return mycmp(self.obj, other.obj) == 0
217 return mycmp(self.obj, other.obj) <= 0
219 return mycmp(self.obj, other.obj) >= 0
/external/libxml2/python/
Dgenerator.py806 def cmp_to_key(mycmp): argument
812 return mycmp(self.obj, other.obj) < 0
814 return mycmp(self.obj, other.obj) > 0
816 return mycmp(self.obj, other.obj) == 0
818 return mycmp(self.obj, other.obj) <= 0
820 return mycmp(self.obj, other.obj) >= 0
822 return mycmp(self.obj, other.obj) != 0
/external/python/cpython2/Lib/test/
Dtest_functools.py491 def mycmp(x, y): function
493 self.assertEqual(sorted(range(5), key=functools.cmp_to_key(mycmp)),
497 def mycmp(x, y): function
499 key = functools.cmp_to_key(mycmp)
/external/python/cpython3/Lib/test/
Dtest_functools.py853 key = self.cmp_to_key(mycmp=cmp1)
888 key = self.cmp_to_key(mycmp=cmp1)
892 def mycmp(x, y): function
894 self.assertEqual(sorted(range(5), key=self.cmp_to_key(mycmp)),
898 def mycmp(x, y): function
902 values = sorted(values, key=self.cmp_to_key(mycmp))
907 def mycmp(x, y): function
909 key = self.cmp_to_key(mycmp)
/external/python/cpython2/Objects/
Dlistsort.txt614 def mycmp(x, y):
625 bound(mycmp)
/external/python/cpython3/Objects/
Dlistsort.txt614 def mycmp(x, y):
625 bound(mycmp)