Home
last modified time | relevance | path

Searched refs:PyUnicode_FindChar (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Python/
Dimportdl.c48 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
Dimport.c1423 dot = PyUnicode_FindChar(package, '.', in resolve_name()
1445 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1); in resolve_name()
1639 dot = PyUnicode_FindChar(name, '.', 0, len, 1); in PyImport_ImportModuleLevelObject()
Dcompile.c342 PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) { in _Py_Mangle()
3302 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1); in compiler_import_as()
3310 dot = PyUnicode_FindChar(name, '.', pos, len, 1); in compiler_import_as()
3360 Py_ssize_t dot = PyUnicode_FindChar( in compiler_import()
Dsymtable.c1955 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, in symtable_visit_alias()
/third_party/python/Modules/
Dsyslogmodule.c98 slash = PyUnicode_FindChar(scriptobj, SEP, 0, scriptlen, -1); in syslog_get_argv()
D_winapi.c825 if (PyUnicode_FindChar(key, '\0', 0, PyUnicode_GET_LENGTH(key), 1) != -1 || in getenvironment()
826 PyUnicode_FindChar(value, '\0', 0, PyUnicode_GET_LENGTH(value), 1) != -1) in getenvironment()
834 PyUnicode_FindChar(key, '=', 1, PyUnicode_GET_LENGTH(key), 1) != -1) in getenvironment()
D_csv.c1111 PyUnicode_FindChar( in join_append_data()
D_sre.c1076 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
D_tkinter.c438 i = PyUnicode_FindChar(r, 0xdcED, 0, len, 1); in unicodeFromTclStringAndSize()
Dposixmodule.c5634 PyUnicode_FindChar(key2, '=', 1, PyUnicode_GET_LENGTH(key2), 1) != -1) in parse_envlist()
10871 PyUnicode_FindChar(name, '=', 1, PyUnicode_GET_LENGTH(name), 1) != -1) in win32_putenv()
D_testcapimodule.c2129 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
/third_party/python/Include/
Dunicodeobject.h952 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/third_party/python/Doc/data/
Drefcounts.dat2691 PyUnicode_FindChar:Py_ssize_t:::
2692 PyUnicode_FindChar:PyObject*:str:0:
2693 PyUnicode_FindChar:Py_UCS4:ch::
2694 PyUnicode_FindChar:Py_ssize_t:start::
2695 PyUnicode_FindChar:Py_ssize_t:end::
2696 PyUnicode_FindChar:int:direction::
Dstable_abi.dat732 function,PyUnicode_FindChar,3.7,
/third_party/python/PC/
Dpython3dll.c655 EXPORT_FUNC(PyUnicode_FindChar)
/third_party/python/Modules/_io/
Dtextio.c1639 if (PyUnicode_FindChar(text, '\n', 0, PyUnicode_GET_LENGTH(text), 1) != -1) in _io_TextIOWrapper_write_impl()
1655 PyUnicode_FindChar(text, '\r', 0, PyUnicode_GET_LENGTH(text), 1) != -1)) in _io_TextIOWrapper_write_impl()
/third_party/python/Misc/
Dstable_abi.txt1918 function PyUnicode_FindChar
/third_party/python/Doc/whatsnew/
D3.3.rst2182 * :c:func:`PyUnicode_FindChar`
2300 :c:func:`PyUnicode_FindChar`
D3.10.rst2222 :c:func:`PyUnicode_FindChar`
D3.7.rst1739 The *start* and *end* parameters of :c:func:`PyUnicode_FindChar` are
/third_party/python/Objects/
Dunicodeobject.c10030 PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, in PyUnicode_FindChar() function
12850 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
12863 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
/third_party/python/Doc/c-api/
Dunicode.rst1636 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \
/third_party/python/Misc/NEWS.d/
D3.7.0a1.rst6381 The index parameters *start* and *end* of PyUnicode_FindChar() are now