Home
last modified time | relevance | path

Searched refs:PyCell_GET (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Objects/
Dcellobject.c28 return PyCell_GET(op); in PyCell_Get()
39 oldobj = PyCell_GET(op); in PyCell_Set()
Dframeobject.c836 value = PyCell_GET(value); in map_to_dict()
890 if (PyCell_GET(values[j]) != value) { in dict_to_map()
/external/python/cpython3/Objects/
Dcellobject.c30 return PyCell_GET(op); in PyCell_Get()
41 oldobj = PyCell_GET(op); in PyCell_Set()
Dframeobject.c844 value = PyCell_GET(value); in map_to_dict()
903 if (PyCell_GET(values[j]) != value) { in dict_to_map()
Dtypeobject.c7702 obj = PyCell_GET(cell); in super_init()
7730 type = (PyTypeObject *) PyCell_GET(cell); in super_init()
/external/python/cpython2/Include/
Dcellobject.h22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref) macro
/external/python/cpython3/Include/
Dcellobject.h22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref) macro
/external/python/cpython2/Doc/c-api/
Dcell.rst44 .. c:function:: PyObject* PyCell_GET(PyObject *cell)
/external/python/cpython3/Doc/c-api/
Dcell.rst44 .. c:function:: PyObject* PyCell_GET(PyObject *cell)
/external/python/cpython3/Python/
Dceval.c2169 PyObject *oldobj = PyCell_GET(cell); in _PyEval_EvalFrameDefault()
2208 value = PyCell_GET(cell); in _PyEval_EvalFrameDefault()
2221 PyObject *value = PyCell_GET(cell); in _PyEval_EvalFrameDefault()
2234 PyObject *oldobj = PyCell_GET(cell); in _PyEval_EvalFrameDefault()
5033 if (PyCell_GET(c) == v) { in unicode_concatenate()
Dbltinmodule.c255 PyObject *cell_cls = PyCell_GET(cell); in builtin___build_class__()
/external/python/cpython2/Doc/data/
Drefcounts.dat115 PyCell_GET:PyObject*::0:
116 PyCell_GET:PyObject*:ob:0:
/external/python/cpython3/Doc/data/
Drefcounts.dat207 PyCell_GET:PyObject*::0:
208 PyCell_GET:PyObject*:ob:0:
/external/python/cpython2/Python/
Dceval.c5187 if (PyCell_GET(c) == v) in string_concatenate()