Searched refs:PyEncoderType (Results 1 - 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_json.c27 #define PyEncoder_Check(op) PyObject_TypeCheck(op, &PyEncoderType)
28 #define PyEncoder_CheckExact(op) (Py_TYPE(op) == &PyEncoderType)
31 static PyTypeObject PyEncoderType; variable
2336 PyTypeObject PyEncoderType = { variable
2401 PyEncoderType.tp_new = PyType_GenericNew;
2402 if (PyType_Ready(&PyEncoderType) < 0)
2407 Py_INCREF((PyObject*)&PyEncoderType);
2408 PyModule_AddObject(m, "make_encoder", (PyObject*)&PyEncoderType);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_json.c27 #define PyEncoder_Check(op) PyObject_TypeCheck(op, &PyEncoderType)
28 #define PyEncoder_CheckExact(op) (Py_TYPE(op) == &PyEncoderType)
31 static PyTypeObject PyEncoderType; variable
2348 PyTypeObject PyEncoderType = { variable
2413 PyEncoderType.tp_new = PyType_GenericNew;
2414 if (PyType_Ready(&PyEncoderType) < 0)
2419 Py_INCREF((PyObject*)&PyEncoderType);
2420 PyModule_AddObject(m, "make_encoder", (PyObject*)&PyEncoderType);

Completed in 13 milliseconds