Home
last modified time | relevance | path

Searched refs:PyUnicode_IsIdentifier (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dunicodeobject.h1036 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dunicodeobject.h1036 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/aosp_15_r20/external/python/cpython3/Include/
Dunicodeobject.h1036 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dunicodeobject.h1036 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dunicodeobject.h1036 PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c686 EXPORT_FUNC(PyUnicode_IsIdentifier)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat768 function,PyUnicode_IsIdentifier,3.2,,
Dpython3.11.abi829 …<elf-symbol name='PyUnicode_IsIdentifier' type='func-type' binding='global-binding' visibility='de…
10333PyUnicode_IsIdentifier' mangled-name='PyUnicode_IsIdentifier' filepath='Objects/unicodeobject.c' l…
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst859 :c:func:`PyUnicode_IsIdentifier` does not call :c:func:`Py_FatalError`
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1534 [function.PyUnicode_IsIdentifier]
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dunicode.rst254 .. c:function:: int PyUnicode_IsIdentifier(PyObject *o)
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c12324 PyUnicode_IsIdentifier(PyObject *self) in PyUnicode_IsIdentifier() function
12389 return PyBool_FromLong(PyUnicode_IsIdentifier(self)); in unicode_isidentifier_impl()
Dtypeobject.c2438 if (!PyUnicode_IsIdentifier(s)) { in valid_identifier()