/external/python/cpython3/Python/ |
D | importdl.c | 45 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
|
D | import.c | 1562 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()
|
D | compile.c | 247 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()
|
D | symtable.c | 1631 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, in symtable_visit_alias()
|
/external/python/cpython3/Modules/ |
D | syslogmodule.c | 98 slash = PyUnicode_FindChar(scriptobj, SEP, 0, scriptlen, -1); in syslog_get_argv()
|
D | _winapi.c | 749 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()
|
D | zipimport.c | 143 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.c | 1034 PyUnicode_FindChar( in join_append_data()
|
D | _sre.c | 1017 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
|
D | posixmodule.c | 4905 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.c | 1909 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2673 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/ |
D | python3.def | 682 PyUnicode_FindChar=python37.PyUnicode_FindChar
|
/external/python/cpython3/Objects/ |
D | exceptions.c | 2853 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()
|
D | unicodeobject.c | 9559 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/ |
D | unicodeobject.h | 2012 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 1547 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/ |
D | 3.3.rst | 2182 * :c:func:`PyUnicode_FindChar` 2300 :c:func:`PyUnicode_FindChar`
|
D | 3.7.rst | 1731 The *start* and *end* parameters of :c:func:`PyUnicode_FindChar` are
|
/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 1632 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 6405 The index parameters *start* and *end* of PyUnicode_FindChar() are now
|