Searched refs:do_strip (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Modules/ |
D | stropmodule.c | 381 do_strip(PyObject *args, int striptype) in do_strip() function 424 return do_strip(args, BOTHSTRIP); in strop_strip() 437 return do_strip(args, LEFTSTRIP); in strop_lstrip() 450 return do_strip(args, RIGHTSTRIP); in strop_rstrip()
|
/external/python/cpython2/Objects/ |
D | stringobject.c | 1861 do_strip(PyStringObject *self, int striptype) in do_strip() function 1923 return do_strip(self, striptype); in do_argstrip() 1939 return do_strip(self, BOTHSTRIP); /* Common case */ in string_strip() 1956 return do_strip(self, LEFTSTRIP); /* Common case */ in string_lstrip() 1973 return do_strip(self, RIGHTSTRIP); /* Common case */ in string_rstrip()
|
D | bytesobject.c | 1987 do_strip(PyBytesObject *self, int striptype) in do_strip() function 2022 return do_strip(self, striptype); in do_argstrip()
|
D | unicodeobject.c | 7097 do_strip(PyUnicodeObject *self, int striptype) in do_strip() function 7154 return do_strip(self, striptype); in do_argstrip() 7170 return do_strip(self, BOTHSTRIP); /* Common case */ in unicode_strip() 7187 return do_strip(self, LEFTSTRIP); /* Common case */ in unicode_lstrip() 7204 return do_strip(self, RIGHTSTRIP); /* Common case */ in unicode_rstrip()
|
/external/python/cpython2/Lib/ |
D | pstats.py | 676 def do_strip(self, line): member in ProfileBrowser
|
/external/python/cpython3/Lib/ |
D | pstats.py | 749 def do_strip(self, line): member in ProfileBrowser
|
/external/python/cpython3/Objects/ |
D | bytesobject.c | 1901 do_strip(PyBytesObject *self, int striptype) in do_strip() function 1936 return do_strip(self, striptype); in do_argstrip()
|
D | unicodeobject.c | 12640 do_strip(PyObject *self, int striptype) in do_strip() function 12719 return do_strip(self, striptype); in do_argstrip()
|