/external/python/cpython2/Python/ |
D | Python-ast.c | 501 PyType_GenericNew, /* tp_new */ 792 Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); in init_types() 796 Store_singleton = PyType_GenericNew(Store_type, NULL, NULL); in init_types() 800 Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); in init_types() 804 AugLoad_singleton = PyType_GenericNew(AugLoad_type, NULL, NULL); in init_types() 808 AugStore_singleton = PyType_GenericNew(AugStore_type, NULL, NULL); in init_types() 812 Param_singleton = PyType_GenericNew(Param_type, NULL, NULL); in init_types() 830 And_singleton = PyType_GenericNew(And_type, NULL, NULL); in init_types() 834 Or_singleton = PyType_GenericNew(Or_type, NULL, NULL); in init_types() 841 Add_singleton = PyType_GenericNew(Add_type, NULL, NULL); in init_types() [all …]
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 650 PyType_GenericNew, /* tp_new */ 981 Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); in init_types() 985 Store_singleton = PyType_GenericNew(Store_type, NULL, NULL); in init_types() 989 Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); in init_types() 993 AugLoad_singleton = PyType_GenericNew(AugLoad_type, NULL, NULL); in init_types() 997 AugStore_singleton = PyType_GenericNew(AugStore_type, NULL, NULL); in init_types() 1001 Param_singleton = PyType_GenericNew(Param_type, NULL, NULL); in init_types() 1017 And_singleton = PyType_GenericNew(And_type, NULL, NULL); in init_types() 1021 Or_singleton = PyType_GenericNew(Or_type, NULL, NULL); in init_types() 1028 Add_singleton = PyType_GenericNew(Add_type, NULL, NULL); in init_types() [all …]
|
/external/python/cpython2/Doc/includes/ |
D | noddy.c | 44 noddy_NoddyType.tp_new = PyType_GenericNew; in initnoddy()
|
/external/python/cpython3/Modules/_sqlite/ |
D | prepare_protocol.c | 80 pysqlite_PrepareProtocolType.tp_new = PyType_GenericNew; in pysqlite_prepare_protocol_setup_types()
|
D | cache.c | 346 pysqlite_NodeType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types() 347 pysqlite_CacheType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
|
D | statement.c | 496 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
|
/external/python/cpython2/Modules/_sqlite/ |
D | prepare_protocol.c | 81 pysqlite_PrepareProtocolType.tp_new = PyType_GenericNew; in pysqlite_prepare_protocol_setup_types()
|
D | cache.c | 365 pysqlite_NodeType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types() 366 pysqlite_CacheType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
|
D | statement.c | 546 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
|
/external/python/cpython3/Doc/includes/ |
D | custom.c | 15 .tp_new = PyType_GenericNew,
|
/external/python/cpython2/Modules/ |
D | xxmodule.c | 348 Null_Type.tp_new = PyType_GenericNew; in initxx()
|
D | bz2module.c | 1606 PyType_GenericNew, /*tp_new*/ 1895 PyType_GenericNew, /*tp_new*/ 2129 PyType_GenericNew, /*tp_new*/
|
/external/python/cpython3/Modules/ |
D | _bz2module.c | 393 PyType_GenericNew, /* tp_new */ 743 PyType_GenericNew, /* tp_new */
|
D | xxlimited.c | 241 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec()
|
D | xxmodule.c | 311 PyType_GenericNew, /*tp_new*/
|
D | _lzmamodule.c | 867 PyType_GenericNew, /* tp_new */ 1304 PyType_GenericNew, /* tp_new */
|
/external/python/cpython2/Objects/ |
D | moduleobject.c | 260 PyType_GenericNew, /* tp_new */
|
D | funcobject.c | 730 PyType_GenericNew, /* tp_new */ 882 PyType_GenericNew, /* tp_new */
|
/external/python/cpython2/Doc/c-api/ |
D | type.rst | 89 .. c:function:: PyObject* PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
/external/python/cpython3/Objects/ |
D | funcobject.c | 803 PyType_GenericNew, /* tp_new */ 981 PyType_GenericNew, /* tp_new */
|
/external/python/cpython3/Doc/c-api/ |
D | type.rst | 86 .. c:function:: PyObject* PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
/external/python/cpython2/Modules/_io/ |
D | bufferedio.c | 1632 PyType_GenericNew, /* tp_new */ 2024 PyType_GenericNew, /* tp_new */ 2300 PyType_GenericNew, /* tp_new */ 2439 PyType_GenericNew, /* tp_new */
|
/external/python/cpython3/Modules/_io/ |
D | bufferedio.c | 2465 PyType_GenericNew, /* tp_new */ 2552 PyType_GenericNew, /* tp_new */ 2631 PyType_GenericNew, /* tp_new */ 2726 PyType_GenericNew, /* tp_new */
|
/external/python/cpython3/Doc/extending/ |
D | newtypes_tutorial.rst | 95 .tp_new = PyType_GenericNew, 167 implementation provided by the API function :c:func:`PyType_GenericNew`. :: 169 .tp_new = PyType_GenericNew, 316 types will simply reuse :c:func:`PyType_GenericNew` as done in the first 873 slot with :c:func:`PyType_GenericNew` -- the allocation function from the base
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1405 PyType_GenericNew:PyObject*::+1: 1406 PyType_GenericNew:PyObject*:type:0: 1407 PyType_GenericNew:PyObject*:args:0: 1408 PyType_GenericNew:PyObject*:kwds:0:
|