Home
last modified time | relevance | path

Searched refs:indexbytes (Results 1 – 10 of 10) sorted by relevance

/external/protobuf/python/google/protobuf/internal/
Ddecoder.py121 b = six.indexbytes(buffer, pos)
141 b = six.indexbytes(buffer, pos)
181 while six.indexbytes(buffer, pos) & 0x80:
/external/python/setuptools/pkg_resources/_vendor/
Dsix.py629 indexbytes = operator.getitem variable
654 def indexbytes(buf, i): function
/external/python/six/
Dsix.py635 indexbytes = operator.getitem variable
660 def indexbytes(buf, i): function
DCHANGES216 - Add helpers for indexing and iterating over bytes: iterbytes and indexbytes.
Dtest_six.py550 assert six.indexbytes(six.b("hello"), 3) == ord("l")
/external/python/setuptools/setuptools/_vendor/
Dsix.py629 indexbytes = operator.getitem variable
654 def indexbytes(buf, i): function
/external/scapy/scapy/modules/
Dsix.py639 indexbytes = operator.getitem variable
664 def indexbytes(buf, i): function
/external/python/cpython2/Doc/howto/
Dpyporting.rst277 named ``six.indexbytes()`` which will return an integer like in Python 3:
278 ``six.indexbytes(b'123', 1)``.
/external/python/cpython3/Doc/howto/
Dpyporting.rst277 named ``six.indexbytes()`` which will return an integer like in Python 3:
278 ``six.indexbytes(b'123', 1)``.
/external/python/six/documentation/
Dindex.rst424 .. function:: indexbytes(buf, i)