Searched refs:sepobj (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Include/ |
D | unicodeobject.h | 1333 PyObject *sepobj
|
/external/python/cpython3/Include/ |
D | unicodeobject.h | 2129 PyObject *sepobj
|
/external/python/cpython3/Objects/ |
D | bytesobject.c | 1939 do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) in do_xstrip() argument 1948 if (PyObject_GetBuffer(sepobj, &vsep, PyBUF_SIMPLE) != 0) in do_xstrip()
|
D | unicodeobject.c | 12279 _PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj) in _PyUnicode_XStrip() argument 12287 if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1) in _PyUnicode_XStrip() 12293 seplen = PyUnicode_GET_LENGTH(sepobj); in _PyUnicode_XStrip() 12294 sepmask = make_bloom_mask(PyUnicode_KIND(sepobj), in _PyUnicode_XStrip() 12295 PyUnicode_DATA(sepobj), in _PyUnicode_XStrip() 12304 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip() 12317 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 1946 do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) in do_xstrip() argument 1955 if (PyObject_GetBuffer(sepobj, &vsep, PyBUF_SIMPLE) != 0) in do_xstrip()
|
D | stringobject.c | 1828 do_xstrip(PyStringObject *self, int striptype, PyObject *sepobj) in do_xstrip() argument 1832 char *sep = PyString_AS_STRING(sepobj); in do_xstrip() 1833 Py_ssize_t seplen = PyString_GET_SIZE(sepobj); in do_xstrip()
|
D | unicodeobject.c | 7062 _PyUnicode_XStrip(PyUnicodeObject *self, int striptype, PyObject *sepobj) in _PyUnicode_XStrip() argument 7066 Py_UNICODE *sep = PyUnicode_AS_UNICODE(sepobj); in _PyUnicode_XStrip() 7067 Py_ssize_t seplen = PyUnicode_GET_SIZE(sepobj); in _PyUnicode_XStrip()
|