| /external/python/cpython2/Modules/ |
| stropmodule.c | 30 split_whitespace(char *s, Py_ssize_t len, Py_ssize_t maxsplit) 63 if (maxsplit && (countsplit >= maxsplit) && i < len) { 86 "split(s [,sep [,maxsplit]]) -> list of strings\n" 87 "splitfields(s [,sep [,maxsplit]]) -> list of strings\n" 90 "delimiter string. If maxsplit is nonzero, splits into at most\n" 91 "maxsplit words. If sep is not specified, any whitespace string\n" 92 "is a separator. Maxsplit defaults to 0.\n" 100 Py_ssize_t splitcount, maxsplit; local 108 maxsplit = 0 [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| string.py | 281 def split(s, sep=None, maxsplit=-1): 282 """split(s [,sep [,maxsplit]]) -> list of strings 285 delimiter string. If maxsplit is given, splits at no more than 286 maxsplit places (resulting in at most maxsplit+1 words). If sep 292 return s.split(sep, maxsplit) 296 def rsplit(s, sep=None, maxsplit=-1): 297 """rsplit(s [,sep [,maxsplit]]) -> list of strings 301 to the front. If maxsplit is given, at most maxsplit splits ar [all...] |
| re.py | 164 def split(pattern, string, maxsplit=0, flags=0): 167 return _compile(pattern, flags).split(string, maxsplit)
|
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| string.py | 281 def split(s, sep=None, maxsplit=-1): 282 """split(s [,sep [,maxsplit]]) -> list of strings 285 delimiter string. If maxsplit is given, splits at no more than 286 maxsplit places (resulting in at most maxsplit+1 words). If sep 292 return s.split(sep, maxsplit) 296 def rsplit(s, sep=None, maxsplit=-1): 297 """rsplit(s [,sep [,maxsplit]]) -> list of strings 301 to the front. If maxsplit is given, at most maxsplit splits ar [all...] |
| re.py | 164 def split(pattern, string, maxsplit=0, flags=0): 167 return _compile(pattern, flags).split(string, maxsplit)
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| string.py | 281 def split(s, sep=None, maxsplit=-1): 282 """split(s [,sep [,maxsplit]]) -> list of strings 285 delimiter string. If maxsplit is given, splits at no more than 286 maxsplit places (resulting in at most maxsplit+1 words). If sep 292 return s.split(sep, maxsplit) 296 def rsplit(s, sep=None, maxsplit=-1): 297 """rsplit(s [,sep [,maxsplit]]) -> list of strings 301 to the front. If maxsplit is given, at most maxsplit splits ar [all...] |
| re.py | 164 def split(pattern, string, maxsplit=0, flags=0): 167 return _compile(pattern, flags).split(string, maxsplit)
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| string.py | 281 def split(s, sep=None, maxsplit=-1): 282 """split(s [,sep [,maxsplit]]) -> list of strings 285 delimiter string. If maxsplit is given, splits at no more than 286 maxsplit places (resulting in at most maxsplit+1 words). If sep 292 return s.split(sep, maxsplit) 296 def rsplit(s, sep=None, maxsplit=-1): 297 """rsplit(s [,sep [,maxsplit]]) -> list of strings 301 to the front. If maxsplit is given, at most maxsplit splits ar [all...] |
| re.py | 164 def split(pattern, string, maxsplit=0, flags=0): 167 return _compile(pattern, flags).split(string, maxsplit)
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
| re.py | 168 def split(pattern, string, maxsplit=0, flags=0):
171 return _compile(pattern, flags).split(string, maxsplit)
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| re.py | 164 def split(pattern, string, maxsplit=0, flags=0):
167 return _compile(pattern, flags).split(string, maxsplit)
|
| /external/python/cpython2/Lib/ |
| re.py | 168 def split(pattern, string, maxsplit=0, flags=0): 171 return _compile(pattern, flags).split(string, maxsplit)
|
| /external/python/cpython3/Lib/ |
| re.py | 204 def split(pattern, string, maxsplit=0, flags=0): 209 list. If maxsplit is nonzero, at most maxsplit splits occur, 212 return _compile(pattern, flags).split(string, maxsplit)
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
| bytearrayobject.c | 2068 Py_ssize_t maxsplit = -1; local 2161 Py_ssize_t maxsplit = -1; local [all...] |
| stringobject.c | 1456 Py_ssize_t maxsplit = -1; local 1555 Py_ssize_t maxsplit = -1; local [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| bytearrayobject.c | 2064 Py_ssize_t maxsplit = -1; local 2157 Py_ssize_t maxsplit = -1; local [all...] |
| stringobject.c | 1439 Py_ssize_t maxsplit = -1; local 1538 Py_ssize_t maxsplit = -1; local [all...] |
| /external/python/cpython2/Objects/ |
| bytearrayobject.c | 2073 Py_ssize_t maxsplit = -1; local 2166 Py_ssize_t maxsplit = -1; local [all...] |
| stringobject.c | 1456 Py_ssize_t maxsplit = -1; local 1555 Py_ssize_t maxsplit = -1; local [all...] |
| /external/python/cpython3/Modules/clinic/ |
| _sre.c.h | 278 "split($self, /, string=None, maxsplit=0, *, source=None)\n" 288 Py_ssize_t maxsplit, PyObject *source); 294 static const char * const _keywords[] = {"string", "maxsplit", "source", NULL}; 297 Py_ssize_t maxsplit = 0; local 301 &string, &maxsplit, &source)) { 304 return_value = _sre_SRE_Pattern_split_impl(self, string, maxsplit, source);
|
| /external/python/cpython3/Lib/collections/ |
| __init__.py | [all...] |
| /external/python/cpython3/Lib/test/ |
| string_tests.py | 414 'a|b|c|d', 'split', '|', maxsplit=1) 416 'a|b|c|d', 'split', sep='|', maxsplit=1) 418 'a|b|c|d', 'split', maxsplit=1, sep='|') 420 'a b c d', 'split', maxsplit=1) 484 'a|b|c|d', 'rsplit', '|', maxsplit=1) 486 'a|b|c|d', 'rsplit', sep='|', maxsplit=1) 488 'a|b|c|d', 'rsplit', maxsplit=1, sep='|') 490 'a b c d', 'rsplit', maxsplit=1) [all...] |
| /external/python/cpython3/Objects/ |
| bytesobject.c | [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
| unicodeobject.h | [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
| unicodeobject.h | [all...] |