Home
last modified time | relevance | path

Searched refs:PyCell_Check (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Objects/
Dcellobject.c25 if (!PyCell_Check(op)) { in PyCell_Get()
37 if (!PyCell_Check(op)) { in PyCell_Set()
63 if (!PyCell_Check(a) || !PyCell_Check(b)) { in cell_richcompare()
Dframeobject.c843 assert(PyCell_Check(value)); in map_to_dict()
902 assert(PyCell_Check(values[j])); in dict_to_map()
Dfuncobject.c497 if (!PyCell_Check(o)) { in func_new_impl()
Dtypeobject.c2796 if (!PyCell_Check(cell)) { in type_new()
7701 assert(PyCell_Check(cell)); in super_init()
7725 if (cell == NULL || !PyCell_Check(cell)) { in super_init()
/external/python/cpython2/Objects/
Dcellobject.c23 if (!PyCell_Check(op)) { in PyCell_Get()
35 if (!PyCell_Check(op)) { in PyCell_Set()
Dframeobject.c835 assert(PyCell_Check(value)); in map_to_dict()
889 assert(PyCell_Check(values[j])); in dict_to_map()
Dfuncobject.c416 if (!PyCell_Check(o)) { in func_new()
/external/python/cpython2/Include/
Dcellobject.h16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type) macro
/external/python/cpython3/Include/
Dcellobject.h16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type) macro
/external/python/cpython2/Doc/c-api/
Dcell.rst28 .. c:function:: int PyCell_Check(ob)
/external/python/cpython3/Doc/c-api/
Dcell.rst28 .. c:function:: int PyCell_Check(ob)
/external/python/cpython3/Doc/data/
Drefcounts.dat201 PyCell_Check:int:::
202 PyCell_Check::ob::
/external/python/cpython3/Python/
Dbltinmodule.c254 if (cls != NULL && PyType_Check(cls) && PyCell_Check(cell)) { in builtin___build_class__()