HomeSort by relevance Sort by last modified time
    Searched defs:PyDict_CheckExact (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
sqlitecompat.h 37 /* define PyDict_CheckExact for pre-2.4 versions of Python */
38 #ifndef PyDict_CheckExact
39 #define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type)
  /external/python/cpython2/Modules/_sqlite/
sqlitecompat.h 37 /* define PyDict_CheckExact for pre-2.4 versions of Python */
38 #ifndef PyDict_CheckExact
39 #define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type)
  /external/python/cpython3/Include/
dictobject.h 60 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /external/python/cpython2/Include/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /prebuilts/gdb/darwin-x86/include/python2.7/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /prebuilts/gdb/linux-x86/include/python2.7/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /external/python/cpython2/Modules/_ctypes/
ctypes.h 11 #define PyDict_CheckExact(ob) (Py_TYPE(ob) == &PyDict_Type)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 109 #define PyDict_CheckExact PyDict_Check
307 if (PyDict_CheckExact(attrib) && !PyDict_Size(attrib))
    [all...]
  /external/python/cpython2/Modules/
_elementtree.c 109 #define PyDict_CheckExact PyDict_Check
307 if (PyDict_CheckExact(attrib) && !PyDict_Size(attrib))
    [all...]

Completed in 462 milliseconds