Home
last modified time | relevance | path

Searched refs:PySequence_Index (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Include/
Dabstract.h762 PyAPI_FUNC(Py_ssize_t) PySequence_Index(PyObject *o, PyObject *value);
/third_party/python/Doc/c-api/
Dsequence.rst108 .. c:function:: Py_ssize_t PySequence_Index(PyObject *o, PyObject *value)
/third_party/python/PC/
Dpython3dll.c501 EXPORT_FUNC(PySequence_Index)
/third_party/python/Doc/data/
Dstable_abi.dat540 function,PySequence_Index,3.2,
Drefcounts.dat1974 PySequence_Index:Py_ssize_t:::
1975 PySequence_Index:PyObject*:o:0:
1976 PySequence_Index:PyObject*:value:0:
/third_party/python/Modules/
D_operator.c504 return PySequence_Index(a, b); in _operator_indexOf_impl()
/third_party/python/Misc/
Dstable_abi.txt1161 function PySequence_Index
DHISTORY24164 - operator.indexOf() (PySequence_Index() in the C API) now works with any
/third_party/python/Objects/
Dabstract.c2302 PySequence_Index(PyObject *s, PyObject *o) in PySequence_Index() function
/third_party/python/Python/
Dcompile.c6148 Py_ssize_t istores = PySequence_Index(pc->stores, name); in compiler_pattern_or()
DPython-ast.c837 Py_ssize_t p = PySequence_Index(fields, key); in ast_type_init()