/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
functools.py | 80 def cmp_to_key(mycmp): 87 return mycmp(self.obj, other.obj) < 0 89 return mycmp(self.obj, other.obj) > 0 91 return mycmp(self.obj, other.obj) == 0 93 return mycmp(self.obj, other.obj) <= 0 95 return mycmp(self.obj, other.obj) >= 0 97 return mycmp(self.obj, other.obj) != 0
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
functools.py | 80 def cmp_to_key(mycmp): 87 return mycmp(self.obj, other.obj) < 0 89 return mycmp(self.obj, other.obj) > 0 91 return mycmp(self.obj, other.obj) == 0 93 return mycmp(self.obj, other.obj) <= 0 95 return mycmp(self.obj, other.obj) >= 0 97 return mycmp(self.obj, other.obj) != 0
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
loader.py | 22 def _CmpToKey(mycmp): 28 return mycmp(self.obj, other.obj) == -1
|
/external/valgrind/main/cachegrind/ |
cg_annotate.in | 491 sub mycmp ($$) 601 mycmp($fn_totals{$a}, $fn_totals{$b})
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_functools.py | 362 def mycmp(x, y): function in function:TestCmpToKey.test_cmp_to_key 364 self.assertEqual(sorted(range(5), key=functools.cmp_to_key(mycmp)), 368 def mycmp(x, y): function in function:TestCmpToKey.test_hash 370 key = functools.cmp_to_key(mycmp)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_functools.py | 362 def mycmp(x, y): function in function:TestCmpToKey.test_cmp_to_key 364 self.assertEqual(sorted(range(5), key=functools.cmp_to_key(mycmp)), 368 def mycmp(x, y): function in function:TestCmpToKey.test_hash 370 key = functools.cmp_to_key(mycmp)
|
/external/valgrind/main/callgrind/ |
callgrind_annotate.in | 759 sub mycmp ($$) 869 mycmp($fn_totals{$a}, $fn_totals{$b}) [all...] |