Searched refs:_Py_bytes_rfind (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Include/ |
D | bytes_methods.h | 27 extern PyObject *_Py_bytes_rfind(const char *str, Py_ssize_t len, PyObject *args);
|
/external/python/cpython3/Objects/ |
D | bytes_methods.c | 631 _Py_bytes_rfind(const char *str, Py_ssize_t len, PyObject *args) in _Py_bytes_rfind() function
|
D | bytearrayobject.c | 1160 return _Py_bytes_rfind(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args); in bytearray_rfind()
|
D | bytesobject.c | 1927 return _Py_bytes_rfind(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_rfind()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 1934 return _Py_bytes_rfind(PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), args); in bytes_rfind()
|