Searched refs:BOTHSTRIP (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Modules/ |
D | stropmodule.c | 26 #define BOTHSTRIP 2 macro 424 return do_strip(args, BOTHSTRIP); in strop_strip()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 1763 #define BOTHSTRIP 2 macro 2040 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl()
|
D | stringobject.c | 1442 #define BOTHSTRIP 2 macro 1939 return do_strip(self, BOTHSTRIP); /* Common case */ in string_strip() 1941 return do_argstrip(self, BOTHSTRIP, args); in string_strip()
|
D | unicodeobject.c | 7053 #define BOTHSTRIP 2 macro 7170 return do_strip(self, BOTHSTRIP); /* Common case */ in unicode_strip() 7172 return do_argstrip(self, BOTHSTRIP, args); in unicode_strip()
|
/external/python/cpython3/Objects/ |
D | bytesobject.c | 1756 #define BOTHSTRIP 2 macro 2033 return do_argstrip(self, BOTHSTRIP, bytes); in bytes_strip_impl()
|
D | unicodeobject.c | 12270 #define BOTHSTRIP 2 macro 12464 return do_argstrip(self, BOTHSTRIP, chars); in unicode_strip_impl()
|