Lines Matching defs:args
1126 bytearray_find(PyByteArrayObject *self, PyObject *args)
1128 return _Py_bytes_find(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);
1132 bytearray_count(PyByteArrayObject *self, PyObject *args)
1134 return _Py_bytes_count(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);
1167 bytearray_index(PyByteArrayObject *self, PyObject *args)
1169 return _Py_bytes_index(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);
1173 bytearray_rfind(PyByteArrayObject *self, PyObject *args)
1175 return _Py_bytes_rfind(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);
1179 bytearray_rindex(PyByteArrayObject *self, PyObject *args)
1181 return _Py_bytes_rindex(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);
1191 bytearray_startswith(PyByteArrayObject *self, PyObject *args)
1193 return _Py_bytes_startswith(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);
1197 bytearray_endswith(PyByteArrayObject *self, PyObject *args)
1199 return _Py_bytes_endswith(PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self), args);