Home
last modified time | relevance | path

Searched refs:PyFrozenSet_CheckExact (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Include/
Dsetobject.h91 #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type) macro
/external/python/cpython2/Include/
Dsetobject.h69 #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type) macro
/external/python/cpython2/Objects/
Dcodeobject.c67 else if (PyFrozenSet_CheckExact(v)) { in intern_string_constants()
498 else if (PyFrozenSet_CheckExact(op)) { in _PyCode_ConstantKey()
Dsetobject.c1060 if (PyFrozenSet_CheckExact(iterable)) { in frozenset_new()
1159 if (PyFrozenSet_CheckExact(so)) { in frozenset_copy()
2411 assert(!PyFrozenSet_CheckExact(ob)); in test_c_api()
2492 assert(PyFrozenSet_CheckExact(f)); in test_c_api()
2514 assert(PyFrozenSet_CheckExact(f)); in test_c_api()
/external/python/cpython3/Objects/
Dsetobject.c1104 if (PyFrozenSet_CheckExact(iterable)) { in frozenset_new()
1181 if (PyFrozenSet_CheckExact(so)) { in frozenset_copy()
2421 assert(!PyFrozenSet_CheckExact(ob)); in test_c_api()
2502 assert(PyFrozenSet_CheckExact(f)); in test_c_api()
2524 assert(PyFrozenSet_CheckExact(f)); in test_c_api()
Dcodeobject.c71 else if (PyFrozenSet_CheckExact(v)) { in intern_string_constants()
573 else if (PyFrozenSet_CheckExact(op)) { in _PyCode_ConstantKey()
/external/python/cpython3/Doc/c-api/
Dset.rst74 .. c:function:: int PyFrozenSet_CheckExact(PyObject *p)
/external/python/cpython2/Doc/c-api/
Dset.rst80 .. c:function:: int PyFrozenSet_CheckExact(PyObject *p)
/external/python/cpython3/Doc/data/
Drefcounts.dat872 PyFrozenSet_CheckExact:int:::
873 PyFrozenSet_CheckExact:PyObject*:p:0:
/external/python/cpython3/Python/
Dast.c149 if (PyTuple_CheckExact(value) || PyFrozenSet_CheckExact(value)) { in validate_constant()