HomeSort by relevance Sort by last modified time
    Searched full:__le__ (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
  /external/python/cpython2/Lib/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
  /prebuilts/gdb/darwin-x86/lib/python2.7/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
_abcoll.py 146 semantics are fixed), all you have to do is redefine __le__ and
150 def __le__(self, other): member in class:Set
163 return len(self) < len(other) and self.__le__(other)
178 return len(self) == len(other) and self.__le__(other)
271 semantics are fixed), all you have to do is redefine __le__ and
  /prebuilts/gdb/linux-x86/lib/python2.7/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
_abcoll.py 146 semantics are fixed), all you have to do is redefine __le__ and
150 def __le__(self, other): member in class:Set
163 return len(self) < len(other) and self.__le__(other)
178 return len(self) == len(other) and self.__le__(other)
271 semantics are fixed), all you have to do is redefine __le__ and
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
_abcoll.py 146 semantics are fixed), all you have to do is redefine __le__ and
150 def __le__(self, other): member in class:Set
163 return len(self) < len(other) and self.__le__(other)
178 return len(self) == len(other) and self.__le__(other)
271 semantics are fixed), all you have to do is redefine __le__ and
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
functools.py 57 ('__le__', lambda self, other: self < other or self == other),
59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other),
64 ('__le__', lambda self, other: not self > other)],
65 '__ge__': [('__le__', lambda self, other: (not self >= other) or self == other),
72 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
92 def __le__(self, other): member in class:cmp_to_key.K
_abcoll.py 146 semantics are fixed), all you have to do is redefine __le__ and
150 def __le__(self, other): member in class:Set
163 return len(self) < len(other) and self.__le__(other)
178 return len(self) == len(other) and self.__le__(other)
271 semantics are fixed), all you have to do is redefine __le__ and
  /external/python/cpython3/Lib/test/
test_binop.py 329 def __le__(self, other): member in class:A
330 self.log_operation('A.__le__')
340 def __le__(self, other): member in class:B
341 self.log_operation('B.__le__')
351 def __le__(self, other): member in class:C
352 self.log_operation('C.__le__')
363 def __le__(self, other): member in class:V
364 self.log_operation('V.__le__')
381 self.assertEqual(op_sequence(le, A, A), ['A.__le__', 'A.__ge__'])
382 self.assertEqual(op_sequence(le, A, B), ['A.__le__', 'B.__ge__']
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octopers.swg 31 // __le__ a <= b
61 %rename(__le__) *::operator<=;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_richcmp.py 16 def __le__(self, other): member in class:Number
65 def __le__(self, other): member in class:Vector
89 "le": (lambda a,b: a<=b, operator.le, operator.__le__),
198 def __le__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
  /external/python/cpython2/Lib/test/
test_richcmp.py 16 def __le__(self, other): member in class:Number
65 def __le__(self, other): member in class:Vector
89 "le": (lambda a,b: a<=b, operator.le, operator.__le__),
198 def __le__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_richcmp.py 16 def __le__(self, other): member in class:Number
65 def __le__(self, other): member in class:Vector
89 "le": (lambda a,b: a<=b, operator.le, operator.__le__),
198 def __le__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_richcmp.py 16 def __le__(self, other): member in class:Number
65 def __le__(self, other): member in class:Vector
89 "le": (lambda a,b: a<=b, operator.le, operator.__le__),
198 def __le__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlopers.swg 22 %rename(__le__) *::operator<=;
  /prebuilts/misc/common/swig/include/2.0.11/r/
ropers.swg 26 %rename(__le__) *::operator<=;
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubyopers.swg 23 %rename(__le__) *::operator<=;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 16 def __le__(self, other): member in class:Number
65 def __le__(self, other): member in class:Vector
89 "le": (lambda a,b: a<=b, operator.le, operator.__le__),
198 def __le__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 16 def __le__(self, other): member in class:Number
65 def __le__(self, other): member in class:Vector
89 "le": (lambda a,b: a<=b, operator.le, operator.__le__),
198 def __le__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
  /external/selinux/python/sepolgen/src/sepolgen/
util.py 136 def __le__(self, other): member in class:Comparison
161 def __le__(self, other): member in class:.cmp_to_key.K
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
util.py 136 def __le__(self, other): member in class:Comparison
161 def __le__(self, other): member in class:.cmp_to_key.K
  /external/python/cpython3/Lib/
functools.py 119 op_result = self.__le__(other)
126 op_result = self.__le__(other)
133 op_result = self.__le__(other)
180 ('__le__', _le_from_lt),
182 '__le__': [('__ge__', _ge_from_le),
187 ('__le__', _le_from_gt)],
188 '__ge__': [('__le__', _le_from_ge),
199 root = max(roots) # prefer __lt__ to __le__ to __gt__ to __ge__
223 def __le__(self, other): member in class:cmp_to_key.K

Completed in 872 milliseconds

1 2 3 4 5 6 7 8 910