Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dstropmodule.c24 #define LEFTSTRIP 0 macro
398 if (striptype != LEFTSTRIP) { in do_strip()
437 return do_strip(args, LEFTSTRIP); in strop_lstrip()
/external/python/cpython2/Objects/
Dbytesobject.c1761 #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()
Dstringobject.c1440 #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()
Dunicodeobject.c7051 #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()
/external/python/cpython3/Objects/
Dbytesobject.c1675 #define LEFTSTRIP 0 macro
1882 if (striptype != LEFTSTRIP) { in do_xstrip()
1914 if (striptype != LEFTSTRIP) { in do_strip()
1972 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl()
Dunicodeobject.c12542 #define LEFTSTRIP 0 macro
12585 if (striptype != LEFTSTRIP) { in _PyUnicode_XStrip()
12663 if (striptype != LEFTSTRIP) { in do_strip()
12689 if (striptype != LEFTSTRIP) { in do_strip()
12757 return do_argstrip(self, LEFTSTRIP, chars); in unicode_lstrip_impl()