Searched refs:sepobj (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Include/cpython/ |
H A D | unicodeobject.h | 1008 PyObject *sepobj
|
/third_party/python/Objects/ |
H A D | bytesobject.c | 1895 do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) in do_xstrip() argument 1904 if (PyObject_GetBuffer(sepobj, &vsep, PyBUF_SIMPLE) != 0) in do_xstrip()
|
H A D | unicodeobject.c | 12510 _PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj) in _PyUnicode_XStrip() argument 12518 if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1) in _PyUnicode_XStrip() 12524 seplen = PyUnicode_GET_LENGTH(sepobj); in _PyUnicode_XStrip() 12525 sepmask = make_bloom_mask(PyUnicode_KIND(sepobj), in _PyUnicode_XStrip() 12526 PyUnicode_DATA(sepobj), in _PyUnicode_XStrip() 12535 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip() 12548 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
|
Completed in 27 milliseconds