/third_party/python/Lib/ |
D | numbers.py | 364 def __or__(self, other): member in Integral
|
D | enum.py | 908 def __or__(self, other): member in Flag 980 def __or__(self, other): member in IntFlag 996 __ror__ = __or__
|
D | weakref.py | 320 def __or__(self, other): member in WeakValueDictionary 525 def __or__(self, other): member in WeakKeyDictionary
|
D | _weakrefset.py | 198 __or__ = union variable in WeakSet
|
D | typing.py | 388 def __or__(self, other): member in _SpecialForm 731 def __or__(self, right): member in _TypeVarLike 1026 def __or__(self, right): member in _GenericAlias 1147 def __or__(self, right): member in _SpecialGenericAlias 2467 def __or__(self, other): member in NewType
|
D | _collections_abc.py | 641 def __or__(self, other): member in Set 647 __ror__ = __or__
|
D | operator.py | 435 __or__ = or_ variable
|
D | os.py | 723 def __or__(self, other): member in _Environ
|
/third_party/python/Lib/test/ |
D | test_augassign.py | 190 def __or__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | test_dict.py | 62 self.assertIs(a.__or__(None), NotImplemented) 63 self.assertIs(a.__or__(()), NotImplemented) 64 self.assertIs(a.__or__("BAD"), NotImplemented) 65 self.assertIs(a.__or__(""), NotImplemented)
|
D | test_collections.py | 2215 (Counter.__or__, lambda x, y: max(0,x,y)), 2232 (Counter.__or__, set.__or__), 2250 (Counter.__ior__, Counter.__or__),
|
D | test_os.py | 1196 self.assertIs(NotImplemented, os.environ.__or__(new_vars_items))
|
/third_party/python/Lib/collections/ |
D | __init__.py | 297 def __or__(self, other): member in OrderedDict 828 def __or__(self, other): member in Counter 1064 def __or__(self, other): member in ChainMap 1121 def __or__(self, other): member in UserDict
|
/third_party/boost/libs/python/doc/reference/ |
D | operators.qbk | 123 [[`self | r`][`__or__`][`x | y`]]
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 148 … ``__iter__``, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``,
|
D | operator.rst | 161 __or__(a, b)
|
D | stdtypes.rst | 5067 The :meth:`__or__` method for type objects was added to support the syntax 5068 ``X | Y``. If a metaclass implements :meth:`__or__`, the Union may 5072 ... def __or__(self, other):
|
D | unittest.mock.rst | 2025 ``__rshift__``, ``__and__``, ``__xor__``, ``__or__``, and ``__pow__``
|
/third_party/mindspore/mindspore/_extends/parse/ |
D | standard_method.py | 1672 return x.__or__(y)
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | test_util.py | 832 def __or__(self, y): member in NonStandardInteger
|
/third_party/python/Doc/reference/ |
D | expressions.rst | 1372 must be integers or one of them must be a custom object overriding :meth:`__or__` or
|
D | datamodel.rst | 2549 object.__or__(self, other)
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 264 …`~PyNumberMethods.nb_or` | :c:type:`binaryfunc` | __or__ |
|
/third_party/python/Misc/ |
D | HISTORY | 31903 "and" are reserved words). ("__or__" and "__and__" are unchanged.)
|