Home
last modified time | relevance | path

Searched refs:_Py_bytes_index (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_bytes_methods.h30 extern PyObject *_Py_bytes_index(const char *str, Py_ssize_t len, PyObject *args);
/external/python/cpython3/Objects/
Dbytes_methods.c595 _Py_bytes_index(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_index() function
Dbytearrayobject.c1153 return _Py_bytes_index(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_index()
Dbytesobject.c1841 return _Py_bytes_index(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_index()
/external/python/cpython2/Objects/
Dbytesobject.c1927 return _Py_bytes_index(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_index()