Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dimportdl.c45 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
Dimport.c1562 dot = PyUnicode_FindChar(package, '.', in resolve_name()
1586 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1); in resolve_name()
1771 dot = PyUnicode_FindChar(name, '.', 0, len, 1); in PyImport_ImportModuleLevelObject()
Dcompile.c247 PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) { in _Py_Mangle()
2764 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1); in compiler_import_as()
2772 dot = PyUnicode_FindChar(name, '.', pos, len, 1); in compiler_import_as()
2821 Py_ssize_t dot = PyUnicode_FindChar( in compiler_import()
Dsymtable.c1631 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.c749 if (PyUnicode_FindChar(key, '\0', 0, PyUnicode_GET_LENGTH(key), 1) != -1 || in getenvironment()
750 PyUnicode_FindChar(value, '\0', 0, PyUnicode_GET_LENGTH(value), 1) != -1) in getenvironment()
758 PyUnicode_FindChar(key, '=', 1, PyUnicode_GET_LENGTH(key), 1) != -1) in getenvironment()
Dzipimport.c143 flen = PyUnicode_FindChar(path, SEP, 0, flen, -1); in zipimport_zipimporter___init___impl()
241 dot = PyUnicode_FindChar(fullname, '.', 0, len, -1); in get_subname()
D_csv.c1034 PyUnicode_FindChar( in join_append_data()
D_sre.c1017 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
Dposixmodule.c4905 PyUnicode_FindChar(key2, '=', 1, PyUnicode_GET_LENGTH(key2), 1) != -1) in parse_envlist()
9229 PyUnicode_FindChar(name, '=', 1, PyUnicode_GET_LENGTH(name), 1) != -1) in os_putenv_impl()
D_testcapimodule.c1909 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
/external/python/cpython3/Doc/data/
Drefcounts.dat2673 PyUnicode_FindChar:Py_ssize_t:::
2674 PyUnicode_FindChar:PyObject*:str:0:
2675 PyUnicode_FindChar:Py_UCS4:ch::
2676 PyUnicode_FindChar:Py_ssize_t:start::
2677 PyUnicode_FindChar:Py_ssize_t:end::
2678 PyUnicode_FindChar:int:direction::
/external/python/cpython3/PC/
Dpython3.def682 PyUnicode_FindChar=python37.PyUnicode_FindChar
/external/python/cpython3/Objects/
Dexceptions.c2853 Py_ssize_t end_pos = PyUnicode_FindChar(self->text, semicolon, in _set_legacy_print_statement_msg()
2961 left_paren_index = PyUnicode_FindChar(self->text, left_paren, in _report_missing_parentheses()
2980 colon_index = PyUnicode_FindChar(self->text, colon, in _report_missing_parentheses()
Dunicodeobject.c9559 PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, in PyUnicode_FindChar() function
12304 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
12317 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
/external/python/cpython3/Include/
Dunicodeobject.h2012 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/external/python/cpython3/Modules/_io/
Dtextio.c1547 if (PyUnicode_FindChar(text, '\n', 0, PyUnicode_GET_LENGTH(text), 1) != -1) in _io_TextIOWrapper_write_impl()
1563 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.rst1731 The *start* and *end* parameters of :c:func:`PyUnicode_FindChar` are
/external/python/cpython3/Doc/c-api/
Dunicode.rst1632 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a1.rst6405 The index parameters *start* and *end* of PyUnicode_FindChar() are now