Home
last modified time | relevance | path

Searched refs:LEFTSTRIP (Results 1 – 5 of 5) 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/cpython3/Objects/
Dbytesobject.c1746 #define LEFTSTRIP 0 macro
1953 if (striptype != LEFTSTRIP) { in do_xstrip()
1985 if (striptype != LEFTSTRIP) { in do_strip()
2043 return do_argstrip(self, LEFTSTRIP, bytes); in bytes_lstrip_impl()
Dunicodeobject.c12230 #define LEFTSTRIP 0 macro
12273 if (striptype != LEFTSTRIP) { in _PyUnicode_XStrip()
12351 if (striptype != LEFTSTRIP) { in do_strip()
12377 if (striptype != LEFTSTRIP) { in do_strip()
12443 return do_strip(self, LEFTSTRIP); /* Common case */ in unicode_lstrip()
12445 return do_argstrip(self, LEFTSTRIP, args); in unicode_lstrip()
/external/python/cpython2/Objects/
Dstringobject.c1434 #define LEFTSTRIP 0 macro
1838 if (striptype != LEFTSTRIP) { in do_xstrip()
1868 if (striptype != LEFTSTRIP) { in do_strip()
1950 return do_strip(self, LEFTSTRIP); /* Common case */ in string_lstrip()
1952 return do_argstrip(self, LEFTSTRIP, args); in string_lstrip()
Dunicodeobject.c7056 #define LEFTSTRIP 0 macro
7085 if (striptype != LEFTSTRIP) { in _PyUnicode_XStrip()
7115 if (striptype != LEFTSTRIP) { in do_strip()
7192 return do_strip(self, LEFTSTRIP); /* Common case */ in unicode_lstrip()
7194 return do_argstrip(self, LEFTSTRIP, args); in unicode_lstrip()