Home
last modified time | relevance | path

Searched refs:RIGHTSTRIP (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/
Dstropmodule.c25 #define RIGHTSTRIP 1 macro
391 if (striptype != RIGHTSTRIP) { in do_strip()
450 return do_strip(args, RIGHTSTRIP); in strop_rstrip()
/external/python/cpython3/Objects/
Dbytesobject.c1747 #define RIGHTSTRIP 1 macro
1946 if (striptype != RIGHTSTRIP) { in do_xstrip()
1978 if (striptype != RIGHTSTRIP) { in do_strip()
2061 return do_argstrip(self, RIGHTSTRIP, bytes); in bytes_rstrip_impl()
Dunicodeobject.c12293 #define RIGHTSTRIP 1 macro
12323 if (striptype != RIGHTSTRIP) { in _PyUnicode_XStrip()
12403 if (striptype != RIGHTSTRIP) { in do_strip()
12429 if (striptype != RIGHTSTRIP) { in do_strip()
12526 return do_argstrip(self, RIGHTSTRIP, chars); in unicode_rstrip_impl()
/external/python/cpython2/Objects/
Dbytesobject.c1762 #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()
Dstringobject.c1441 #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()
Dunicodeobject.c7052 #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()