Home
last modified time | relevance | path

Searched refs:PyIndex_Check (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Modules/
Dmmapmodule.c898 if (PyIndex_Check(item)) { in mmap_subscript()
984 if (PyIndex_Check(item)) { in mmap_ass_subscript()
1002 if (!PyIndex_Check(value)) { in mmap_ass_subscript()
Darraymodule.c2346 if (PyIndex_Check(item)) { in array_subscr()
2412 if (PyIndex_Check(item)) { in array_ass_subscr()
D_testbuffer.c1799 if (PyIndex_Check(key)) { in ndarray_subscript()
1893 if (dest->ndim == 1 && PyIndex_Check(key)) { in ndarray_ass_subscript()
D_functoolsmodule.c1189 } else if (PyIndex_Check(maxsize_O)) { in lru_cache_new()
D_elementtree.c1726 if (PyIndex_Check(item)) { in element_subscr()
1779 if (PyIndex_Check(item)) { in element_ass_subscr()
D_xxsubinterpretersmodule.c1427 else if (PyIndex_Check(arg)) { in channel_id_converter()
D_struct.c133 if (PyIndex_Check(v)) { in get_pylong()
D_sre.c2032 if (PyIndex_Check(index)) { in match_getindex()
Dposixmodule.c962 else if (PyIndex_Check(o)) { in dir_fd_converter()
1169 is_index = path->allow_fd && PyIndex_Check(o); in path_converter()
/third_party/python/Include/
Dabstract.h520 PyAPI_FUNC(int) PyIndex_Check(PyObject *);
/third_party/protobuf/python/google/protobuf/pyext/
Drepeated_composite_container.cc240 if (PyIndex_Check(item)) { in Subscript()
Ddescriptor_containers.cc617 if (PyIndex_Check(item)) { in SeqSubscript()
Dmessage.cc634 if (PROTOBUF_PREDICT_FALSE(!PyIndex_Check(arg))) { in CheckAndGetInteger()
/third_party/python/Misc/NEWS.d/
D3.9.0a6.rst1199 Always declare :c:func:`PyIndex_Check` as an opaque function to hide
1200 implementation details: remove ``PyIndex_Check()`` macro. The macro accessed
D3.8.0a1.rst1133 macros :c:func:`PyIter_Check`, :c:func:`PyIndex_Check` and
/third_party/python/Doc/c-api/
Dnumber.rst286 .. c:function:: int PyIndex_Check(PyObject *o)
/third_party/python/Doc/data/
Dstable_abi.dat310 function,PyIndex_Check,3.8,
Drefcounts.dat1047 PyIndex_Check:int:::
1048 PyIndex_Check:PyObject*:o:0:
/third_party/python/PC/
Dpython3dll.c299 EXPORT_FUNC(PyIndex_Check)
/third_party/python/Objects/
Dabstract.c1407 PyIndex_Check(PyObject *obj) in PyIndex_Check() function
1590 if (!PyIndex_Check(result)) { in PyNumber_Long()
/third_party/python/Modules/_ctypes/
D_ctypes.c4602 if (PyIndex_Check(item)) { in Array_subscript()
4744 if (PyIndex_Check(item)) { in Array_ass_subscript()
5258 if (PyIndex_Check(item)) { in Pointer_subscript()
/third_party/python/Misc/
Dstable_abi.txt2029 function PyIndex_Check
/third_party/python/Doc/whatsnew/
D3.9.rst1388 * :c:func:`PyIndex_Check` is now always declared as an opaque function to hide
1389 implementation details: removed the ``PyIndex_Check()`` macro. The macro accessed