Home
last modified time | relevance | path

Searched refs:PyAnySet_Check (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Objects/
Dsetobject.c406 assert (PyAnySet_Check(so)); in set_clear_internal()
465 assert (PyAnySet_Check(so)); in set_next()
566 assert (PyAnySet_Check(so)); in set_merge()
567 assert (PyAnySet_Check(otherset)); in set_merge()
804 assert (PyAnySet_Check(so)); in setiter_iternext()
886 if (PyAnySet_Check(other)) in set_update_internal()
1152 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) in set_or()
1170 if (!PyAnySet_Check(other)) in set_ior()
1194 if (PyAnySet_Check(other)) { in set_intersection()
1314 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) in set_and()
[all …]
Ddictobject.c4298 if (!PyAnySet_Check(other) && !PyDictViewSet_Check(other)) in dictview_richcompare()
4684 if (PyAnySet_Check(other) || PyDictViewSet_Check(other)) { in dictviews_isdisjoint()
/third_party/python/Include/
Dsetobject.h67 #define PySet_GET_SIZE(so) (assert(PyAnySet_Check(so)),(((PySetObject *)(so))->used))
97 #define PyAnySet_Check(ob) \ macro
/third_party/python/Doc/c-api/
Dset.rst63 .. c:function:: int PyAnySet_Check(PyObject *p)
/third_party/python/Doc/data/
Drefcounts.dat34 PyAnySet_Check:int:::
35 PyAnySet_Check:PyObject*:p:0:
/third_party/python/Python/
Dcompile.c4179 PyAnySet_Check(v))) in check_subscripter()