Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_abc.c224 if (impl->_abc_registry != NULL && PySet_Clear(impl->_abc_registry) < 0) { in _abc__reset_registry()
251 if (impl->_abc_cache != NULL && PySet_Clear(impl->_abc_cache) < 0) { in _abc__reset_caches()
257 PySet_Clear(impl->_abc_negative_cache) < 0) { in _abc__reset_caches()
639 PySet_Clear(impl->_abc_negative_cache) < 0) in _abc__abc_subclasscheck_impl()
/external/python/cpython3/Include/
Dsetobject.h84 PyAPI_FUNC(int) PySet_Clear(PyObject *set);
/external/python/cpython2/Include/
Dsetobject.h87 PyAPI_FUNC(int) PySet_Clear(PyObject *set);
/external/python/cpython3/Doc/c-api/
Dset.rst157 .. c:function:: int PySet_Clear(PyObject *set)
/external/python/cpython2/Doc/c-api/
Dset.rst173 .. c:function:: int PySet_Clear(PyObject *set)
/external/python/cpython3/PC/
Dpython3.def529 PySet_Clear=python39.PySet_Clear
/external/python/cpython3/Objects/
Dsetobject.c2262 PySet_Clear(PyObject *set) in PySet_Clear() function
2414 assert(PySet_Clear(dup2) == 0); in test_c_api()
2420 assertRaises(PySet_Clear(f) == -1, PyExc_SystemError); in test_c_api()
/external/python/cpython2/Objects/
Dsetobject.c2295 PySet_Clear(PyObject *set) in PySet_Clear() function
2452 assert(PySet_Clear(dup2) == 0); in test_c_api()
2458 assertRaises(PySet_Clear(f) == -1, PyExc_SystemError); in test_c_api()
/external/python/cpython2/PC/os2emx/
Dpython27.def509 "PySet_Clear"
/external/python/cpython3/Doc/data/
Drefcounts.dat2041 PySet_Clear:int:::
2042 PySet_Clear:PyObject*:set:0:
/external/python/pybind11/include/pybind11/
Dpytypes.h1364 void clear() const { PySet_Clear(m_ptr); } in clear()