Searched refs:do_argstrip (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython3/Objects/
H A Dbytesobject.c2002 do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes) function
2025 return do_argstrip(self, BOTHSTRIP, bytes);
2043 return do_argstrip(self, LEFTSTRIP, bytes);
2061 return do_argstrip(self, RIGHTSTRIP, bytes);
H A Dunicodeobject.c12394 do_argstrip(PyObject *self, int striptype, PyObject *args) function
12429 return do_argstrip(self, BOTHSTRIP, args);
12445 return do_argstrip(self, LEFTSTRIP, args);
12461 return do_argstrip(self, RIGHTSTRIP, args);
/external/python/cpython2/Objects/
H A Dstringobject.c1885 do_argstrip(PyStringObject *self, int striptype, PyObject *args) function
1935 return do_argstrip(self, BOTHSTRIP, args);
1952 return do_argstrip(self, LEFTSTRIP, args);
1969 return do_argstrip(self, RIGHTSTRIP, args);
H A Dunicodeobject.c7132 do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args) function
7177 return do_argstrip(self, BOTHSTRIP, args);
7194 return do_argstrip(self, LEFTSTRIP, args);
7211 return do_argstrip(self, RIGHTSTRIP, args);

Completed in 161 milliseconds