Searched defs:maxsplit (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Lib/ |
D | stringold.py | 104 def split(s, sep=None, maxsplit=0): argument 402 def replace(s, old, new, maxsplit=0): argument
|
D | UserString.py | 107 def replace(self, old, new, maxsplit=-1): argument 118 def split(self, sep=None, maxsplit=-1): argument 120 def rsplit(self, sep=None, maxsplit=-1): argument
|
D | re.py | 168 def split(pattern, string, maxsplit=0, flags=0): argument
|
D | string.py | 283 def split(s, sep=None, maxsplit=-1): argument 298 def rsplit(s, sep=None, maxsplit=-1): argument
|
/external/python/cpython2/Objects/stringlib/ |
D | split.h | 20 #define PREALLOC_SIZE(maxsplit) \ argument
|
/external/python/cpython2/Modules/ |
D | stropmodule.c | 30 split_whitespace(char *s, Py_ssize_t len, Py_ssize_t maxsplit) in split_whitespace() 100 Py_ssize_t splitcount, maxsplit; in strop_splitfields() local
|
D | _sre.c | 2257 Py_ssize_t maxsplit = 0; in pattern_split() local
|
/external/python/cpython2/Objects/ |
D | bytearrayobject.c | 2073 Py_ssize_t maxsplit = -1; in bytearray_split() local 2166 Py_ssize_t maxsplit = -1; in bytearray_rsplit() local
|
D | stringobject.c | 1456 Py_ssize_t maxsplit = -1; in string_split() local 1555 Py_ssize_t maxsplit = -1; in string_rsplit() local
|
D | unicodeobject.c | 7457 Py_ssize_t maxsplit) in PyUnicode_Split() 7588 Py_ssize_t maxsplit) in PyUnicode_RSplit()
|