Searched refs:sepobj (Results 1 - 6 of 6) sorted by relevance

/external/python/cpython2/Include/
H A Dunicodeobject.h1333 PyObject *sepobj
/external/python/cpython3/Include/
H A Dunicodeobject.h2136 PyObject *sepobj
/external/python/cpython3/Objects/
H A Dbytesobject.c1931 do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) argument
1940 if (PyObject_GetBuffer(sepobj, &vsep, PyBUF_SIMPLE) != 0)
H A Dunicodeobject.c12241 _PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj) argument
12249 if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1)
12255 seplen = PyUnicode_GET_LENGTH(sepobj);
12256 sepmask = make_bloom_mask(PyUnicode_KIND(sepobj),
12257 PyUnicode_DATA(sepobj),
12266 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0)
12279 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0)
/external/python/cpython2/Objects/
H A Dstringobject.c1822 do_xstrip(PyStringObject *self, int striptype, PyObject *sepobj) argument
1826 char *sep = PyString_AS_STRING(sepobj);
1827 Py_ssize_t seplen = PyString_GET_SIZE(sepobj);
H A Dunicodeobject.c7067 _PyUnicode_XStrip(PyUnicodeObject *self, int striptype, PyObject *sepobj) argument
7071 Py_UNICODE *sep = PyUnicode_AS_UNICODE(sepobj);
7072 Py_ssize_t seplen = PyUnicode_GET_SIZE(sepobj);

Completed in 290 milliseconds