Searched refs:RIGHTSTRIP (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Modules/ |
D | stropmodule.c | 25 #define RIGHTSTRIP 1 macro 391 if (striptype != RIGHTSTRIP) { in do_strip() 450 return do_strip(args, RIGHTSTRIP); in strop_rstrip()
|
/external/python/cpython3/Objects/ |
D | bytesobject.c | 1755 #define RIGHTSTRIP 1 macro 1954 if (striptype != RIGHTSTRIP) { in do_xstrip() 1986 if (striptype != RIGHTSTRIP) { in do_strip() 2069 return do_argstrip(self, RIGHTSTRIP, bytes); in bytes_rstrip_impl()
|
D | unicodeobject.c | 12269 #define RIGHTSTRIP 1 macro 12299 if (striptype != RIGHTSTRIP) { in _PyUnicode_XStrip() 12379 if (striptype != RIGHTSTRIP) { in do_strip() 12405 if (striptype != RIGHTSTRIP) { in do_strip() 12502 return do_argstrip(self, RIGHTSTRIP, chars); in unicode_rstrip_impl()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 1762 #define RIGHTSTRIP 1 macro 1961 if (striptype != RIGHTSTRIP) { in do_xstrip() 1993 if (striptype != RIGHTSTRIP) { in do_strip() 2076 return do_argstrip(self, RIGHTSTRIP, bytes); in bytes_rstrip_impl()
|
D | stringobject.c | 1441 #define RIGHTSTRIP 1 macro 1837 if (striptype != RIGHTSTRIP) { in do_xstrip() 1867 if (striptype != RIGHTSTRIP) { in do_strip() 1973 return do_strip(self, RIGHTSTRIP); /* Common case */ in string_rstrip() 1975 return do_argstrip(self, RIGHTSTRIP, args); in string_rstrip()
|
D | unicodeobject.c | 7052 #define RIGHTSTRIP 1 macro 7073 if (striptype != RIGHTSTRIP) { in _PyUnicode_XStrip() 7103 if (striptype != RIGHTSTRIP) { in do_strip() 7204 return do_strip(self, RIGHTSTRIP); /* Common case */ in unicode_rstrip() 7206 return do_argstrip(self, RIGHTSTRIP, args); in unicode_rstrip()
|