Home
last modified time | relevance | path

Searched refs:do_strip (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Modules/
Dstropmodule.c381 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/
Dstringobject.c1855 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()
Dunicodeobject.c7102 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/
Dpstats.py676 def do_strip(self, line): member in ProfileBrowser