Searched refs:LEFTSTRIP (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Modules/ |
D | stropmodule.c | 24 #define LEFTSTRIP 0 macro 398 if (striptype != LEFTSTRIP) { in do_strip() 437 return do_strip(args, LEFTSTRIP); in strop_lstrip()
|
/external/python/cpython3/Objects/ |
D | bytesobject.c | 1754 #define LEFTSTRIP 0 macro 1961 if (striptype != LEFTSTRIP) { in do_xstrip() 1993 if (striptype != LEFTSTRIP) { in do_strip() 2051 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl()
|
D | unicodeobject.c | 12268 #define LEFTSTRIP 0 macro 12311 if (striptype != LEFTSTRIP) { in _PyUnicode_XStrip() 12389 if (striptype != LEFTSTRIP) { in do_strip() 12415 if (striptype != LEFTSTRIP) { in do_strip() 12483 return do_argstrip(self, LEFTSTRIP, chars); in unicode_lstrip_impl()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 1761 #define LEFTSTRIP 0 macro 1968 if (striptype != LEFTSTRIP) { in do_xstrip() 2000 if (striptype != LEFTSTRIP) { in do_strip() 2058 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl()
|
D | stringobject.c | 1440 #define LEFTSTRIP 0 macro 1844 if (striptype != LEFTSTRIP) { in do_xstrip() 1874 if (striptype != LEFTSTRIP) { in do_strip() 1956 return do_strip(self, LEFTSTRIP); /* Common case */ in string_lstrip() 1958 return do_argstrip(self, LEFTSTRIP, args); in string_lstrip()
|
D | unicodeobject.c | 7051 #define LEFTSTRIP 0 macro 7080 if (striptype != LEFTSTRIP) { in _PyUnicode_XStrip() 7110 if (striptype != LEFTSTRIP) { in do_strip() 7187 return do_strip(self, LEFTSTRIP); /* Common case */ in unicode_lstrip() 7189 return do_argstrip(self, LEFTSTRIP, args); in unicode_lstrip()
|