Home
last modified time | relevance | path

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

12

/aosp_15_r20/external/python/cpython3/Python/
Dimportdl.c50 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1); in get_encoded_name()
Dimport.c1639 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()
Dcompile.c480 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()
Dsymtable.c1947 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, in symtable_visit_alias()
/aosp_15_r20/external/python/cpython3/Modules/
Dgetpath.c90 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()
Dsyslogmodule.c102 slash = PyUnicode_FindChar(scriptobj, SEP, 0, scriptlen, -1); in syslog_get_argv()
D_winapi.c825 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.c1111 PyUnicode_FindChar( in join_append_data()
D_tkinter.c442 i = PyUnicode_FindChar(r, 0xdcED, 0, len, 1); in unicodeFromTclStringAndSize()
Dposixmodule.c5734 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.c2324 result = PyUnicode_FindChar(str, (Py_UCS4)ch, start, end, direction); in unicode_findchar()
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2628 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::
Dstable_abi.dat752 function,PyUnicode_FindChar,3.7,,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dunicodeobject.h948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dunicodeobject.h948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/aosp_15_r20/external/python/cpython3/Include/
Dunicodeobject.h948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dunicodeobject.h948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dunicodeobject.h948 PyAPI_FUNC(Py_ssize_t) PyUnicode_FindChar(
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c668 EXPORT_FUNC(PyUnicode_FindChar)
/aosp_15_r20/external/python/cpython3/Modules/_io/
Dtextio.c1606 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/
Dsre.c1085 literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1; in pattern_subx()
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml2002 [function.PyUnicode_FindChar]
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.3.rst2182 * :c:func:`PyUnicode_FindChar`
2300 :c:func:`PyUnicode_FindChar`
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c9703 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/
Dunicode.rst1459 .. c:function:: Py_ssize_t PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, \

12