Searched refs:do_argstrip (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Objects/ |
D | bytesobject.c | 2010 do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes) in do_argstrip() function 2033 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl() 2051 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl() 2069 return do_argstrip(self, RIGHTSTRIP, bytes); in bytes_rstrip_impl()
|
D | unicodeobject.c | 12432 do_argstrip(PyObject *self, int striptype, PyObject *sep) in do_argstrip() function 12464 return do_argstrip(self, BOTHSTRIP, chars); in unicode_strip_impl() 12483 return do_argstrip(self, LEFTSTRIP, chars); in unicode_lstrip_impl() 12502 return do_argstrip(self, RIGHTSTRIP, chars); in unicode_rstrip_impl()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 2017 do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes) in do_argstrip() function 2040 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl() 2058 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl() 2076 return do_argstrip(self, RIGHTSTRIP, bytes); in bytes_rstrip_impl()
|
D | stringobject.c | 1891 do_argstrip(PyStringObject *self, int striptype, PyObject *args) in do_argstrip() function 1941 return do_argstrip(self, BOTHSTRIP, args); in string_strip() 1958 return do_argstrip(self, LEFTSTRIP, args); in string_lstrip() 1975 return do_argstrip(self, RIGHTSTRIP, args); in string_rstrip()
|
D | unicodeobject.c | 7127 do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args) in do_argstrip() function 7172 return do_argstrip(self, BOTHSTRIP, args); in unicode_strip() 7189 return do_argstrip(self, LEFTSTRIP, args); in unicode_lstrip() 7206 return do_argstrip(self, RIGHTSTRIP, args); in unicode_rstrip()
|