/external/python/cpython2/Modules/_io/ |
D | _iomodule.c | 669 _PyExc_BlockingIOError.tp_base = (PyTypeObject *) PyExc_IOError; in init_io() 682 PyFileIO_Type.tp_base = &PyRawIOBase_Type; in init_io() 686 PyBytesIO_Type.tp_base = &PyBufferedIOBase_Type; in init_io() 690 PyStringIO_Type.tp_base = &PyTextIOBase_Type; in init_io() 694 PyBufferedReader_Type.tp_base = &PyBufferedIOBase_Type; in init_io() 698 PyBufferedWriter_Type.tp_base = &PyBufferedIOBase_Type; in init_io() 702 PyBufferedRWPair_Type.tp_base = &PyBufferedIOBase_Type; in init_io() 706 PyBufferedRandom_Type.tp_base = &PyBufferedIOBase_Type; in init_io() 710 PyTextIOWrapper_Type.tp_base = &PyTextIOBase_Type; in init_io()
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 687 PyFileIO_Type.tp_base = &PyRawIOBase_Type; in PyInit__io() 691 PyBytesIO_Type.tp_base = &PyBufferedIOBase_Type; in PyInit__io() 697 PyStringIO_Type.tp_base = &PyTextIOBase_Type; in PyInit__io() 702 PyWindowsConsoleIO_Type.tp_base = &PyRawIOBase_Type; in PyInit__io() 707 PyBufferedReader_Type.tp_base = &PyBufferedIOBase_Type; in PyInit__io() 711 PyBufferedWriter_Type.tp_base = &PyBufferedIOBase_Type; in PyInit__io() 715 PyBufferedRWPair_Type.tp_base = &PyBufferedIOBase_Type; in PyInit__io() 719 PyBufferedRandom_Type.tp_base = &PyBufferedIOBase_Type; in PyInit__io() 723 PyTextIOWrapper_Type.tp_base = &PyTextIOBase_Type; in PyInit__io()
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 369 {"__base__", T_OBJECT, offsetof(PyTypeObject, tp_base), READONLY}, 715 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__")) in type_set_bases() 722 old_base = type->tp_base; in type_set_bases() 725 type->tp_base = new_base; in type_set_bases() 773 assert(type->tp_base == new_base); in type_set_bases() 776 type->tp_base = old_base; in type_set_bases() 1038 base = base->tp_base; in subtype_traverse() 1092 base = base->tp_base; in subtype_clear() 1145 base = base->tp_base; in subtype_dealloc() 1177 base = base->tp_base; in subtype_dealloc() [all …]
|
D | typeslots.inc | 49 offsetof(PyHeapTypeObject, ht_type.tp_base),
|
D | structseq.c | 354 type->tp_base = &PyTuple_Type; in PyStructSequence_InitType2()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 216 {"__base__", T_OBJECT, offsetof(PyTypeObject, tp_base), READONLY}, 495 if (!compatible_for_assignment(type->tp_base, new_base, "__bases__")) in type_set_bases() 502 old_base = type->tp_base; in type_set_bases() 506 type->tp_base = new_base; in type_set_bases() 569 Py_DECREF(type->tp_base); in type_set_bases() 575 type->tp_base = old_base; in type_set_bases() 849 base = base->tp_base; in subtype_traverse() 903 base = base->tp_base; in subtype_clear() 951 base = base->tp_base; in subtype_dealloc() 988 base = base->tp_base; in subtype_dealloc() [all …]
|
/external/python/cpython2/Modules/ |
D | xxsubtype.c | 269 spamdict_type.tp_base = &PyDict_Type; in initxxsubtype() 273 spamlist_type.tp_base = &PyList_Type; in initxxsubtype()
|
D | xxmodule.c | 347 Null_Type.tp_base = &PyBaseObject_Type; in initxx() 349 Str_Type.tp_base = &PyUnicode_Type; in initxx()
|
/external/python/cpython3/Modules/ |
D | xxsubtype.c | 267 spamdict_type.tp_base = &PyDict_Type; in xxsubtype_exec() 271 spamlist_type.tp_base = &PyList_Type; in xxsubtype_exec()
|
D | xxmodule.c | 353 Null_Type.tp_base = &PyBaseObject_Type; in xx_exec() 354 Str_Type.tp_base = &PyUnicode_Type; in xx_exec()
|
/external/python/cpython2/Doc/includes/ |
D | shoddy.c | 80 ShoddyType.tp_base = &PyList_Type; in initshoddy()
|
D | typestruct.h | 60 struct _typeobject *tp_base; member
|
/external/python/cpython3/Doc/includes/ |
D | sublist.c | 52 SubListType.tp_base = &PyList_Type; in PyInit_sublist()
|
D | typestruct.h | 58 struct _typeobject *tp_base; member
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes.c | 467 StgDictObject *basedict = PyType_stgdict((PyObject *)result->tp_base); in StructUnionType_new() 2043 if (result->tp_base == &Simple_Type) { in PyCSimpleType_new() 2870 return type->tp_base != &Simple_Type; in _ctypes_simple_instance() 4140 if (PyType_stgdict((PyObject *)type->tp_base)) { in _init_pos_args() 4141 index = _init_pos_args(self, type->tp_base, in _init_pos_args() 4775 if (Py_TYPE(self)->tp_base != &Simple_Type) { in Simple_repr() 5309 PyComError_Type.tp_base = (PyTypeObject*)PyExc_Exception; in create_comerror() 5463 PyCStgDict_Type.tp_base = &PyDict_Type; in PyInit__ctypes() 5472 PyCStructType_Type.tp_base = &PyType_Type; in PyInit__ctypes() 5476 UnionType_Type.tp_base = &PyType_Type; in PyInit__ctypes() [all …]
|
D | stgdict.c | 408 basedict = PyType_stgdict((PyObject *)((PyTypeObject *)type)->tp_base); in PyCStructUnionType_update_stgdict()
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 510 StgDictObject *basedict = PyType_stgdict((PyObject *)result->tp_base); in StructUnionType_new() 2116 if (result->tp_base == &Simple_Type) { in PyCSimpleType_new() 2984 return type->tp_base != &Simple_Type; in _ctypes_simple_instance() 4248 if (PyType_stgdict((PyObject *)type->tp_base)) { in _init_pos_args() 4249 index = _init_pos_args(self, type->tp_base, in _init_pos_args() 4978 if (Py_TYPE(self)->tp_base != &Simple_Type) { in Simple_repr() 5700 PyCStgDict_Type.tp_base = &PyDict_Type; in init_ctypes() 5709 PyCStructType_Type.tp_base = &PyType_Type; in init_ctypes() 5713 UnionType_Type.tp_base = &PyType_Type; in init_ctypes() 5717 PyCPointerType_Type.tp_base = &PyType_Type; in init_ctypes() [all …]
|
D | stgdict.c | 392 basedict = PyType_stgdict((PyObject *)((PyTypeObject *)type)->tp_base); in PyCStructUnionType_update_stgdict()
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | bfloat16.cc | 548 PyBfloat16_Type.tp_base = &PyGenericArrType_Type; in Initialize() 675 CHECK(PyBfloat16_Type.tp_base != nullptr); in Bfloat16PyType()
|
/external/python/cpython2/Mac/Modules/cf/ |
D | _CFmodule.c | 4910 CFArrayRef_Type.tp_base = &CFTypeRef_Type; in init_CF() 4918 CFMutableArrayRef_Type.tp_base = &CFArrayRef_Type; in init_CF() 4926 CFDictionaryRef_Type.tp_base = &CFTypeRef_Type; in init_CF() 4934 CFMutableDictionaryRef_Type.tp_base = &CFDictionaryRef_Type; in init_CF() 4942 CFDataRef_Type.tp_base = &CFTypeRef_Type; in init_CF() 4950 CFMutableDataRef_Type.tp_base = &CFDataRef_Type; in init_CF() 4958 CFStringRef_Type.tp_base = &CFTypeRef_Type; in init_CF() 4966 CFMutableStringRef_Type.tp_base = &CFStringRef_Type; in init_CF() 4974 CFURLRef_Type.tp_base = &CFTypeRef_Type; in init_CF()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 2653 return CMessage_Type.tp_base->tp_getattro( in CheckAndGetInteger() 2872 CMessageClass_Type.tp_base = &PyType_Type; in CheckAndGetInteger() 2977 ScalarMapContainer_Type.tp_base = in CheckAndGetInteger() 3002 MessageMapContainer_Type.tp_base = in CheckAndGetInteger()
|
/external/python/cpython3/Doc/extending/ |
D | newtypes_tutorial.rst | 352 ``type->tp_base->tp_new``. If you do not do this, Python subclasses of your 847 The :c:type:`PyTypeObject` struct supports a :c:member:`~PyTypeObject.tp_base` 857 SubListType.tp_base = &PyList_Type; 871 :c:member:`~PyTypeObject.tp_base` slot filled in. When we are deriving an
|
/external/python/cpython2/Include/ |
D | object.h | 383 struct _typeobject *tp_base; member
|
/external/python/cpython3/Include/ |
D | object.h | 405 struct _typeobject *tp_base; member
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tensor.cc | 952 _EagerTensorType.tp_base = base_class_type; in TFE_Py_InitEagerTensor()
|