HomeSort by relevance Sort by last modified time
    Searched refs:mycmp (Results 1 - 8 of 8) sorted by null

  /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/lldb/test/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 763 sub mycmp ($$)
876 mycmp($fn_totals{$a}, $fn_totals{$b})
    [all...]

Completed in 655 milliseconds