/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 | 1031 {Py_tp_new, PyType_GenericNew}, 1570 state->Load_singleton = PyType_GenericNew((PyTypeObject *)state->Load_type, in init_types() 1577 state->Store_singleton = PyType_GenericNew((PyTypeObject in init_types() 1583 state->Del_singleton = PyType_GenericNew((PyTypeObject *)state->Del_type, in init_types() 1593 state->And_singleton = PyType_GenericNew((PyTypeObject *)state->And_type, in init_types() 1599 state->Or_singleton = PyType_GenericNew((PyTypeObject *)state->Or_type, in init_types() 1610 state->Add_singleton = PyType_GenericNew((PyTypeObject *)state->Add_type, in init_types() 1616 state->Sub_singleton = PyType_GenericNew((PyTypeObject *)state->Sub_type, in init_types() 1622 state->Mult_singleton = PyType_GenericNew((PyTypeObject *)state->Mult_type, in init_types() 1629 state->MatMult_singleton = PyType_GenericNew((PyTypeObject in init_types() [all …]
|
/external/python/cpython2/Doc/includes/ |
D | noddy.c | 44 noddy_NoddyType.tp_new = PyType_GenericNew; in initnoddy()
|
/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/Modules/_sqlite/ |
D | prepare_protocol.c | 80 pysqlite_PrepareProtocolType.tp_new = PyType_GenericNew; in pysqlite_prepare_protocol_setup_types()
|
D | cache.c | 352 pysqlite_NodeType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types() 353 pysqlite_CacheType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
|
D | statement.c | 505 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
|
/external/python/cpython3/Doc/includes/ |
D | custom.c | 16 .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 | xxlimited.c | 245 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec()
|
D | xxmodule.c | 314 PyType_GenericNew, /*tp_new*/
|
D | _bz2module.c | 382 PyType_GenericNew, /* tp_new */ 723 PyType_GenericNew, /* tp_new */
|
D | _lzmamodule.c | 854 PyType_GenericNew, /* tp_new */ 1298 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 | 852 PyType_GenericNew, /* tp_new */ 1032 PyType_GenericNew, /* tp_new */
|
/external/python/cpython3/Include/ |
D | object.h | 235 PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
|
/external/python/cpython3/Modules/_io/ |
D | bufferedio.c | 2458 PyType_GenericNew, /* tp_new */ 2544 PyType_GenericNew, /* tp_new */ 2621 PyType_GenericNew, /* tp_new */ 2715 PyType_GenericNew, /* tp_new */
|
/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/Doc/extending/ |
D | newtypes_tutorial.rst | 96 .tp_new = PyType_GenericNew, 168 implementation provided by the API function :c:func:`PyType_GenericNew`. :: 170 .tp_new = PyType_GenericNew, 322 types will simply reuse :c:func:`PyType_GenericNew` as done in the first 884 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:
|