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

/external/python/cpython2/Modules/
H A Dstropmodule.c21 in do_strip(), which uses an additional parameter to indicate what
381 do_strip(PyObject *args, int striptype) function
424 return do_strip(args, BOTHSTRIP);
437 return do_strip(args, LEFTSTRIP);
450 return do_strip(args, RIGHTSTRIP);
/external/python/cpython2/Objects/
H A Dstringobject.c1855 do_strip(PyStringObject *self, int striptype) function
1917 return do_strip(self, striptype);
1933 return do_strip(self, BOTHSTRIP); /* Common case */
1950 return do_strip(self, LEFTSTRIP); /* Common case */
1967 return do_strip(self, RIGHTSTRIP); /* Common case */
H A Dunicodeobject.c7102 do_strip(PyUnicodeObject *self, int striptype) function
7159 return do_strip(self, striptype);
7175 return do_strip(self, BOTHSTRIP); /* Common case */
7192 return do_strip(self, LEFTSTRIP); /* Common case */
7209 return do_strip(self, RIGHTSTRIP); /* Common case */
/external/python/cpython2/Lib/
H A Dpstats.py676 def do_strip(self, line): member in class:f8.ProfileBrowser
/external/python/cpython3/Lib/
H A Dpstats.py667 def do_strip(self, line): member in class:f8.ProfileBrowser
/external/python/cpython3/Objects/
H A Dbytesobject.c1972 do_strip(PyBytesObject *self, int striptype) function
2007 return do_strip(self, striptype);
H A Dunicodeobject.c12328 do_strip(PyObject *self, int striptype) function
12412 return do_strip(self, striptype);
12427 return do_strip(self, BOTHSTRIP); /* Common case */
12443 return do_strip(self, LEFTSTRIP); /* Common case */
12459 return do_strip(self, RIGHTSTRIP); /* Common case */

Completed in 483 milliseconds