Searched refs:do_strip (Results 1 – 4 of 4) 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 | 1855 do_strip(PyStringObject *self, int striptype) in do_strip() function 1917 return do_strip(self, striptype); in do_argstrip() 1933 return do_strip(self, BOTHSTRIP); /* Common case */ in string_strip() 1950 return do_strip(self, LEFTSTRIP); /* Common case */ in string_lstrip() 1967 return do_strip(self, RIGHTSTRIP); /* Common case */ in string_rstrip()
|
D | unicodeobject.c | 7102 do_strip(PyUnicodeObject *self, int striptype) in do_strip() function 7159 return do_strip(self, striptype); in do_argstrip() 7175 return do_strip(self, BOTHSTRIP); /* Common case */ in unicode_strip() 7192 return do_strip(self, LEFTSTRIP); /* Common case */ in unicode_lstrip() 7209 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
|