/aosp_15_r20/external/python/cpython3/Python/ |
D | importdl.c | 50 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
|
D | import.c | 1639 dot = PyUnicode_FindChar(package, '.', in resolve_name() 1661 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1); in resolve_name() 1852 dot = PyUnicode_FindChar(name, '.', 0, len, 1); in PyImport_ImportModuleLevelObject()
|
D | compile.c | 480 PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) { in _Py_Mangle() 3884 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1); in compiler_import_as() 3892 dot = PyUnicode_FindChar(name, '.', pos, len, 1); in compiler_import_as() 3942 Py_ssize_t dot = PyUnicode_FindChar( in compiler_import()
|
D | symtable.c | 1947 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, in symtable_visit_alias()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | getpath.c | 90 Py_ssize_t pos = PyUnicode_FindChar(path, SEP, 0, end, -1); in getpath_basename() 106 Py_ssize_t pos = PyUnicode_FindChar(path, SEP, 0, end, -1); in getpath_dirname()
|
D | syslogmodule.c | 102 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 | _tkinter.c | 442 i = PyUnicode_FindChar(r, 0xdcED, 0, len, 1); in unicodeFromTclStringAndSize()
|
D | posixmodule.c | 5734 PyUnicode_FindChar(key2, '=', 1, PyUnicode_GET_LENGTH(key2), 1) != -1) in parse_envlist() 11025 PyUnicode_FindChar(name, '=', 1, PyUnicode_GET_LENGTH(name), 1) != -1) in win32_putenv()
|
D | _testcapimodule.c | 2324 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2628 PyUnicode_FindChar:Py_ssize_t::: 2629 PyUnicode_FindChar:PyObject*:str:0: 2630 PyUnicode_FindChar:Py_UCS4:ch:: 2631 PyUnicode_FindChar:Py_ssize_t:start:: 2632 PyUnicode_FindChar:Py_ssize_t:end:: 2633 PyUnicode_FindChar:int:direction::
|
D | stable_abi.dat | 752 function,PyUnicode_FindChar,3.7,,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | unicodeobject.h | 948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | unicodeobject.h | 948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | unicodeobject.h | 948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | unicodeobject.h | 948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | unicodeobject.h | 948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 668 EXPORT_FUNC(PyUnicode_FindChar)
|
/aosp_15_r20/external/python/cpython3/Modules/_io/ |
D | textio.c | 1606 if (PyUnicode_FindChar(text, '\n', 0, PyUnicode_GET_LENGTH(text), 1) != -1) in _io_TextIOWrapper_write_impl() 1622 PyUnicode_FindChar(text, '\r', 0, PyUnicode_GET_LENGTH(text), 1) != -1)) in _io_TextIOWrapper_write_impl()
|
/aosp_15_r20/external/python/cpython3/Modules/_sre/ |
D | sre.c | 1085 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | stable_abi.toml | 2002 [function.PyUnicode_FindChar]
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2182 * :c:func:`PyUnicode_FindChar` 2300 :c:func:`PyUnicode_FindChar`
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | unicodeobject.c | 9703 PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, in PyUnicode_FindChar() function 12535 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip() 12548 if (PyUnicode_FindChar(sepobj, ch, 0, seplen, 1) < 0) in _PyUnicode_XStrip()
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 1459 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \
|