HomeSort by relevance Sort by last modified time
    Searched refs:PyDict_CheckExact (Results 1 - 25 of 59) sorted by null

1 2 3

  /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)
statement.c 286 if (PyDict_CheckExact(parameters)) {
  /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)
statement.c 293 if (PyDict_CheckExact(parameters)) {
  /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)
  /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/Include/
dictobject.h 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
  /external/python/cpython3/Python/
ceval.c     [all...]
  /external/python/cpython3/Include/
dictobject.h 60 #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)
  /external/python/cpython2/Modules/
_functoolsmodule.c 308 else if(!PyDict_CheckExact(kw))
  /external/python/cpython3/Modules/_sqlite/
statement.c 284 if (PyDict_CheckExact(parameters)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
dictobject.c 235 assert(PyDict_CheckExact(op));
488 if (!PyDict_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op))
    [all...]
setobject.c 939 if (PyDict_CheckExact(other)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
dictobject.c 235 assert(PyDict_CheckExact(op));
488 if (!PyDict_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op))
    [all...]
setobject.c 938 if (PyDict_CheckExact(other)) {
    [all...]
  /external/python/cpython2/Objects/
dictobject.c 235 assert(PyDict_CheckExact(op));
488 if (!PyDict_CheckExact(op) || !_PyObject_GC_IS_TRACKED(op))
    [all...]
setobject.c 935 if (PyDict_CheckExact(other)) {
    [all...]
  /external/python/cpython3/Objects/
odictobject.c 197 PyDict_CheckExact() calls to each of the concrete API functions.
218 (PyDict_CheckExact) -
    [all...]
dictobject.c 265 assert(PyDict_CheckExact(op));
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 223 if (!PyDict_CheckExact(st->dispatch_table)) {
233 if (!PyDict_CheckExact(st->extension_registry)) {
243 if (!PyDict_CheckExact(st->inverted_registry)) {
252 if (!PyDict_CheckExact(st->extension_cache)) {
268 if (!PyDict_CheckExact(st->name_mapping_2to3)) {
278 if (!PyDict_CheckExact(st->import_mapping_2to3)) {
289 if (!PyDict_CheckExact(st->name_mapping_3to2)) {
299 if (!PyDict_CheckExact(st->import_mapping_3to2)) {
    [all...]

Completed in 1578 milliseconds

1 2 3