/third_party/python/Python/ |
D | importdl.c | 48 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
|
D | import.c | 1423 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()
|
D | compile.c | 342 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()
|
D | symtable.c | 1955 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, in symtable_visit_alias()
|
/third_party/python/Modules/ |
D | syslogmodule.c | 98 slash = PyUnicode_FindChar(scriptobj, SEP, 0, scriptlen, -1); in syslog_get_argv()
|
D | _winapi.c | 825 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.c | 1111 PyUnicode_FindChar( in join_append_data()
|
D | _sre.c | 1076 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
|
D | _tkinter.c | 438 i = PyUnicode_FindChar(r, 0xdcED, 0, len, 1); in unicodeFromTclStringAndSize()
|
D | posixmodule.c | 5634 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.c | 2129 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
|
/third_party/python/Include/ |
D | unicodeobject.h | 952 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 2691 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::
|
D | stable_abi.dat | 732 function,PyUnicode_FindChar,3.7,
|
/third_party/python/PC/ |
D | python3dll.c | 655 EXPORT_FUNC(PyUnicode_FindChar)
|
/third_party/python/Modules/_io/ |
D | textio.c | 1639 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/ |
D | stable_abi.txt | 1918 function PyUnicode_FindChar
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 2182 * :c:func:`PyUnicode_FindChar` 2300 :c:func:`PyUnicode_FindChar`
|
D | 3.10.rst | 2222 :c:func:`PyUnicode_FindChar`
|
D | 3.7.rst | 1739 The *start* and *end* parameters of :c:func:`PyUnicode_FindChar` are
|
/third_party/python/Objects/ |
D | unicodeobject.c | 10030 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/ |
D | unicode.rst | 1636 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 6381 The index parameters *start* and *end* of PyUnicode_FindChar() are now
|