Home
last modified time | relevance | path

Searched refs:stringlib_split_whitespace (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dsplit.h57 stringlib_split_whitespace(PyObject* str_obj, in stringlib_split_whitespace() function
/external/python/cpython3/Objects/
Dbytearrayobject.c1371 return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit); in bytearray_split_impl()
Dbytesobject.c1784 return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit); in bytes_split_impl()
/external/python/cpython2/Objects/
Dbytearrayobject.c2096 return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit); in bytearray_split()
Dbytesobject.c1791 return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit); in bytes_split_impl()
Dstringobject.c1471 return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit); in string_split()
Dunicodeobject.c5852 return stringlib_split_whitespace( in split()