Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dimportdl.c45 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
Dimport.c1673 dot = PyUnicode_FindChar(package, '.', in resolve_name()
1695 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1); in resolve_name()
1889 dot = PyUnicode_FindChar(name, '.', 0, len, 1); in PyImport_ImportModuleLevelObject()
Dcompile.c257 PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) { in _Py_Mangle()
3188 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1); in compiler_import_as()
3196 dot = PyUnicode_FindChar(name, '.', pos, len, 1); in compiler_import_as()
3245 Py_ssize_t dot = PyUnicode_FindChar( in compiler_import()
Dsymtable.c1795 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, in symtable_visit_alias()
/external/python/cpython3/Modules/
Dsyslogmodule.c98 slash = PyUnicode_FindChar(scriptobj, SEP, 0, scriptlen, -1); in syslog_get_argv()
D_winapi.c816 if (PyUnicode_FindChar(key, '\0', 0, PyUnicode_GET_LENGTH(key), 1) != -1 || in getenvironment()
817 PyUnicode_FindChar(value, '\0', 0, PyUnicode_GET_LENGTH(value), 1) != -1) in getenvironment()
825 PyUnicode_FindChar(key, '=', 1, PyUnicode_GET_LENGTH(key), 1) != -1) in getenvironment()
D_csv.c1039 PyUnicode_FindChar( in join_append_data()
D_sre.c1009 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
Dposixmodule.c5507 PyUnicode_FindChar(key2, '=', 1, PyUnicode_GET_LENGTH(key2), 1) != -1) in parse_envlist()
10710 PyUnicode_FindChar(name, '=', 1, PyUnicode_GET_LENGTH(name), 1) != -1) in win32_putenv()
D_testcapimodule.c1991 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
/external/python/cpython3/Include/
Dunicodeobject.h932 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/external/python/cpython3/Doc/data/
Drefcounts.dat2714 PyUnicode_FindChar:Py_ssize_t:::
2715 PyUnicode_FindChar:PyObject*:str:0:
2716 PyUnicode_FindChar:Py_UCS4:ch::
2717 PyUnicode_FindChar:Py_ssize_t:start::
2718 PyUnicode_FindChar:Py_ssize_t:end::
2719 PyUnicode_FindChar:int:direction::
/external/python/cpython3/PC/
Dpython3.def682 PyUnicode_FindChar=python39.PyUnicode_FindChar
/external/python/cpython3/Objects/
Dexceptions.c2925 Py_ssize_t end_pos = PyUnicode_FindChar(self->text, semicolon, in _set_legacy_print_statement_msg()
3043 left_paren_index = PyUnicode_FindChar(self->text, left_paren, in _report_missing_parentheses()
3062 colon_index = PyUnicode_FindChar(self->text, colon, in _report_missing_parentheses()
Dunicodeobject.c9761 PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, in PyUnicode_FindChar() function
12578 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
12591 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
/external/python/cpython3/Modules/_io/
Dtextio.c1641 if (PyUnicode_FindChar(text, '\n', 0, PyUnicode_GET_LENGTH(text), 1) != -1) in _io_TextIOWrapper_write_impl()
1657 PyUnicode_FindChar(text, '\r', 0, PyUnicode_GET_LENGTH(text), 1) != -1)) in _io_TextIOWrapper_write_impl()
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2182 * :c:func:`PyUnicode_FindChar`
2300 :c:func:`PyUnicode_FindChar`
D3.7.rst1738 The *start* and *end* parameters of :c:func:`PyUnicode_FindChar` are
/external/python/cpython3/Doc/c-api/
Dunicode.rst1647 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a1.rst6381 The index parameters *start* and *end* of PyUnicode_FindChar() are now