Home
last modified time | relevance | path

Searched refs:ilshift (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/
Doperator.py356 def ilshift(a, b): function
451 __ilshift__ = ilshift
/external/python/pybind11/include/pybind11/
Doperators.h143 PYBIND11_INPLACE_OPERATOR(ilshift, operator<<=, l <<= r)
/external/python/cpython3/Doc/library/
Doperator.rst500 .. function:: ilshift(a, b)
503 ``a = ilshift(a, b)`` is equivalent to ``a <<= b``.
/external/python/cpython2/Doc/library/
Doperator.rst359 .. function:: ilshift(a, b)
362 ``a = ilshift(a, b)`` is equivalent to ``a <<= b``.
/external/python/cpython2/Modules/
Doperator.c413 spam2(ilshift,__ilshift__, "a = ilshift(a, b) -- Same as a <<= b.")
/external/python/cpython2/Lib/test/
Dtest_operator.py495 self.assertEqual(operator.ilshift (c, 5), "ilshift")
/external/python/cpython3/Lib/test/
Dtest_operator.py472 self.assertEqual(operator.ilshift (c, 5), "ilshift")