Searched refs:striptype (Results 1 - 7 of 7) sorted by relevance

/external/python/cpython3/Objects/
H A Dbytesobject.c1931 do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) argument
1946 if (striptype != RIGHTSTRIP) {
1953 if (striptype != LEFTSTRIP) {
1972 do_strip(PyBytesObject *self, int striptype) argument
1978 if (striptype != RIGHTSTRIP) {
1985 if (striptype != LEFTSTRIP) {
2002 do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes) argument
2005 return do_xstrip(self, striptype, bytes);
2007 return do_strip(self, striptype);
H A Dunicodeobject.c12241 _PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj) argument
12261 if (striptype != RIGHTSTRIP) {
12273 if (striptype != LEFTSTRIP) {
12328 do_strip(PyObject *self, int striptype) argument
12341 if (striptype != RIGHTSTRIP) {
12351 if (striptype != LEFTSTRIP) {
12367 if (striptype != RIGHTSTRIP) {
12377 if (striptype != LEFTSTRIP) {
12394 do_argstrip(PyObject *self, int striptype, PyObject *args) argument
12398 if (!PyArg_ParseTuple(args, stripformat[striptype],
[all...]
/external/python/cpython2/Modules/
H A Dstropmodule.c381 do_strip(PyObject *args, int striptype) argument
391 if (striptype != RIGHTSTRIP) {
398 if (striptype != LEFTSTRIP) {
/external/python/cpython2/Objects/
H A Dstringobject.c1822 do_xstrip(PyStringObject *self, int striptype, PyObject *sepobj) argument
1831 if (striptype != RIGHTSTRIP) {
1838 if (striptype != LEFTSTRIP) {
1855 do_strip(PyStringObject *self, int striptype) argument
1861 if (striptype != RIGHTSTRIP) {
1868 if (striptype != LEFTSTRIP) {
1885 do_argstrip(PyStringObject *self, int striptype, PyObject *args) argument
1889 if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep))
1894 return do_xstrip(self, striptype, sep);
1902 striptype, se
[all...]
H A Dunicodeobject.c7067 _PyUnicode_XStrip(PyUnicodeObject *self, int striptype, PyObject *sepobj) argument
7078 if (striptype != RIGHTSTRIP) {
7085 if (striptype != LEFTSTRIP) {
7102 do_strip(PyUnicodeObject *self, int striptype) argument
7108 if (striptype != RIGHTSTRIP) {
7115 if (striptype != LEFTSTRIP) {
7132 do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args) argument
7136 if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep))
7141 return _PyUnicode_XStrip(self, striptype, sep);
7147 res = _PyUnicode_XStrip(self, striptype, se
[all...]
/external/python/cpython2/Include/
H A Dunicodeobject.h1332 int striptype,
/external/python/cpython3/Include/
H A Dunicodeobject.h2135 int striptype,

Completed in 338 milliseconds