Home
last modified time | relevance | path

Searched refs:PyUnicode_Partition (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h202 # define PyUnicode_Partition PyUnicodeUCS2_Partition macro
289 # define PyUnicode_Partition PyUnicodeUCS4_Partition macro
1179 PyAPI_FUNC(PyObject*) PyUnicode_Partition(
/external/python/cpython3/Include/
Dunicodeobject.h865 PyAPI_FUNC(PyObject*) PyUnicode_Partition(
/external/python/cpython3/PC/
Dpython3dll.c688 EXPORT_FUNC(PyUnicode_Partition)
/external/python/cpython3/Doc/data/
Dstable_abi.dat770 function,PyUnicode_Partition,3.2,,
Dpython3.11.abi832 …<elf-symbol name='PyUnicode_Partition' type='func-type' binding='global-binding' visibility='defau…
10303PyUnicode_Partition' mangled-name='PyUnicode_Partition' filepath='Objects/unicodeobject.c' line='1…
/external/python/cpython3/Misc/
Dstable_abi.toml1538 [function.PyUnicode_Partition]
/external/python/cpython2/Objects/
Dunicodeobject.c7501 PyUnicode_Partition(PyObject *str_in, PyObject *sep_in) in PyUnicode_Partition() function
7565 return PyUnicode_Partition((PyObject *)self, separator); in unicode_partition()
Dstringobject.c1505 return PyUnicode_Partition((PyObject *) self, sep_obj); in string_partition()
/external/python/cpython3/Objects/
Dunicodeobject.c13192 PyUnicode_Partition(PyObject *str_obj, PyObject *sep_obj) in PyUnicode_Partition() function
13314 return PyUnicode_Partition(self, sep); in unicode_partition()