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.c1755 #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()
Dunicodeobject.c12269 #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/
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()