/third_party/python/Lib/ |
H A D | numbers.py | 364 def __or__(self, other): member in Integral
|
H A D | _weakrefset.py | 197 __or__ = union variable in WeakSet
|
H A D | weakref.py | 319 def __or__(self, other): member in WeakValueDictionary 524 def __or__(self, other): member in WeakKeyDictionary
|
H A D | typing.py | 464 def __or__(self, other): member in _SpecialForm 900 def __or__(self, other): member in ForwardRef 951 def __or__(self, right): member in _BoundVarianceMixin 1367 def __or__(self, right): member in _GenericAlias 1582 def __or__(self, right): member in _SpecialGenericAlias 3166 def __or__(self, other): member in NewType
|
H A D | operator.py | 442 __or__ = or_ variable
|
H A D | _collections_abc.py | 599 def __or__(self, other): member in Set 605 __ror__ = __or__
|
H A D | enum.py | 603 # for Flag, add __or__, __and__, __xor__, and __invert__ 606 '__or__', '__and__', '__xor__', 1505 def __or__(self, other): member in Flag 1548 __ror__ = __or__ 1686 body['__or__'] = Flag.__or__
|
H A D | os.py | 725 def __or__(self, other): member in _Environ
|
/third_party/python/Lib/test/ |
H A D | test_augassign.py | 190 def __or__(self, val): member in AugAssignTest.testCustomMethods2.testall 191 output.append("__or__ called") 308 __or__ called
|
H A D | test_dict.py | 63 self.assertIs(a.__or__(None), NotImplemented) 64 self.assertIs(a.__or__(()), NotImplemented) 65 self.assertIs(a.__or__("BAD"), NotImplemented) 66 self.assertIs(a.__or__(""), NotImplemented)
|
H A D | test_collections.py | 2237 (Counter.__or__, lambda x, y: max(0,x,y)), 2254 (Counter.__or__, set.__or__), 2272 (Counter.__ior__, Counter.__or__),
|
H A D | test_os.py | 1208 self.assertIs(NotImplemented, os.environ.__or__(new_vars_items))
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 317 def __or__(self, other): member in OrderedDict 850 def __or__(self, other): member in Counter 1086 def __or__(self, other): member in ChainMap 1143 def __or__(self, other): member in UserDict
|
/third_party/python/Include/internal/ |
H A D | pycore_global_strings.h | 159 STRUCT_FOR_ID(__or__)
|
H A D | pycore_runtime_init.h | 782 INIT_ID(__or__), \
|
/third_party/littlefs/scripts/ |
H A D | tracebd.py | 248 def __or__(self, other): member in Block 440 Block.__or__,
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | test_util.py | 832 def __or__(self, y): member in NonStandardInteger
|
/third_party/python/Objects/ |
H A D | typeobject.c | 4392 .nb_or = _Py_union_type_or, // Add __or__ function 7525 SLOT1BIN(slot_nb_or, nb_or, __or__, __ror__) 8139 BINSLOT("__or__", nb_or, slot_nb_or, "|"),
|