Home
last modified time | relevance | path

Searched refs:PyDict_CheckExact (Results 1 – 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dsqlitecompat.h38 #ifndef PyDict_CheckExact
39 #define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type) macro
Dstatement.c286 if (PyDict_CheckExact(parameters)) { in pysqlite_statement_bind_parameters()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Ddictobject.h101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Ddictobject.h101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddictobject.c235 assert(PyDict_CheckExact(op)); in PyDict_Fini()
488 if (!PyDict_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op)) in _PyDict_MaybeUntrack()
1156 if (!PyDict_CheckExact(mp)) { in dict_subscript()
1331 if (PyDict_CheckExact(d) && PyDict_CheckExact(seq)) { in dict_fromkeys()
1350 if (PyDict_CheckExact(d) && PyAnySet_CheckExact(seq)) { in dict_fromkeys()
1374 if (PyDict_CheckExact(d)) { in dict_fromkeys()
Dsetobject.c939 if (PyDict_CheckExact(other)) { in set_update_internal()
1535 if (!PyAnySet_Check(other) && !PyDict_CheckExact(other)) { in set_difference()
1549 if (PyDict_CheckExact(other)) { in set_difference()
1642 if (PyDict_CheckExact(other)) { in set_symmetric_difference_update()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddictobject.c235 assert(PyDict_CheckExact(op)); in PyDict_Fini()
488 if (!PyDict_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op)) in _PyDict_MaybeUntrack()
1181 if (!PyDict_CheckExact(mp)) { in dict_subscript()
1356 if (PyDict_CheckExact(d) && ((PyDictObject *)d)->ma_used == 0) { in dict_fromkeys()
1357 if (PyDict_CheckExact(seq)) { in dict_fromkeys()
1408 if (PyDict_CheckExact(d)) { in dict_fromkeys()
Dsetobject.c938 if (PyDict_CheckExact(other)) { in set_update_internal()
1534 if (!PyAnySet_Check(other) && !PyDict_CheckExact(other)) { in set_difference()
1548 if (PyDict_CheckExact(other)) { in set_difference()
1641 if (PyDict_CheckExact(other)) { in set_symmetric_difference_update()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dceval.c1942 if (PyDict_CheckExact(x)) in PyEval_EvalFrameEx()
2057 if (PyDict_CheckExact(v)) { in PyEval_EvalFrameEx()
2246 assert (PyDict_CheckExact(v)); in PyEval_EvalFrameEx()
2258 assert (PyDict_CheckExact(v)); in PyEval_EvalFrameEx()
4607 else if (PyDict_CheckExact(locals)) in import_all_from()
4839 if (PyDict_CheckExact(locals) && in string_concatenate()
Dgetargs.c1895 if (!PyDict_CheckExact(kw)) { in _PyArg_NoKeywords()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dceval.c1939 if (PyDict_CheckExact(x)) in PyEval_EvalFrameEx()
2042 if (PyDict_CheckExact(v)) { in PyEval_EvalFrameEx()
2231 assert (PyDict_CheckExact(v)); in PyEval_EvalFrameEx()
2243 assert (PyDict_CheckExact(v)); in PyEval_EvalFrameEx()
4585 else if (PyDict_CheckExact(locals)) in import_all_from()
4817 if (PyDict_CheckExact(locals) && in string_concatenate()
Dmarshal.c380 else if (PyDict_CheckExact(v)) { in w_object()
Dgetargs.c1894 if (!PyDict_CheckExact(kw)) { in _PyArg_NoKeywords()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dgcmodule.c439 else if (PyDict_CheckExact(op)) { in move_unreachable()
D_elementtree.c109 #define PyDict_CheckExact PyDict_Check macro
307 if (PyDict_CheckExact(attrib) && !PyDict_Size(attrib)) in element_new()
Ditertoolsmodule.c3806 if (kwds != NULL && PyDict_CheckExact(kwds) && PyDict_Size(kwds) > 0) { in izip_longest_new()
DcPickle.c1978 if (PyDict_CheckExact(args) && self->proto > 0) { in save_dict()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dgcmodule.c526 if (PyDict_CheckExact(op)) in untrack_dicts()
Ditertoolsmodule.c3852 if (kwds != NULL && PyDict_CheckExact(kwds) && PyDict_Size(kwds) > 0) { in izip_longest_new()
DcPickle.c2009 if (PyDict_CheckExact(args) && self->proto > 0) { in save_dict()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
Dmarshal.c380 else if (PyDict_CheckExact(v)) { in w_object()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
Dmarshal.c391 else if (PyDict_CheckExact(v)) { in w_object()