Home
last modified time | relevance | path

Searched refs:PyType_GenericNew (Results 1 – 25 of 67) sorted by relevance

123

/external/python/cpython2/Python/
DPython-ast.c501 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/
DPython-ast.c650 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/
Dnoddy.c44 noddy_NoddyType.tp_new = PyType_GenericNew; in initnoddy()
/external/python/cpython3/Modules/_sqlite/
Dprepare_protocol.c80 pysqlite_PrepareProtocolType.tp_new = PyType_GenericNew; in pysqlite_prepare_protocol_setup_types()
Dcache.c346 pysqlite_NodeType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
347 pysqlite_CacheType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
Dstatement.c496 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
/external/python/cpython2/Modules/_sqlite/
Dprepare_protocol.c81 pysqlite_PrepareProtocolType.tp_new = PyType_GenericNew; in pysqlite_prepare_protocol_setup_types()
Dcache.c365 pysqlite_NodeType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
366 pysqlite_CacheType.tp_new = PyType_GenericNew; in pysqlite_cache_setup_types()
Dstatement.c546 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
/external/python/cpython3/Doc/includes/
Dcustom.c15 .tp_new = PyType_GenericNew,
/external/python/cpython2/Modules/
Dxxmodule.c348 Null_Type.tp_new = PyType_GenericNew; in initxx()
Dbz2module.c1606 PyType_GenericNew, /*tp_new*/
1895 PyType_GenericNew, /*tp_new*/
2129 PyType_GenericNew, /*tp_new*/
/external/python/cpython3/Modules/
D_bz2module.c393 PyType_GenericNew, /* tp_new */
743 PyType_GenericNew, /* tp_new */
Dxxlimited.c241 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec()
Dxxmodule.c311 PyType_GenericNew, /*tp_new*/
D_lzmamodule.c867 PyType_GenericNew, /* tp_new */
1304 PyType_GenericNew, /* tp_new */
/external/python/cpython2/Objects/
Dmoduleobject.c260 PyType_GenericNew, /* tp_new */
Dfuncobject.c730 PyType_GenericNew, /* tp_new */
882 PyType_GenericNew, /* tp_new */
/external/python/cpython2/Doc/c-api/
Dtype.rst89 .. c:function:: PyObject* PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
/external/python/cpython3/Objects/
Dfuncobject.c803 PyType_GenericNew, /* tp_new */
981 PyType_GenericNew, /* tp_new */
/external/python/cpython3/Doc/c-api/
Dtype.rst86 .. c:function:: PyObject* PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)
/external/python/cpython2/Modules/_io/
Dbufferedio.c1632 PyType_GenericNew, /* tp_new */
2024 PyType_GenericNew, /* tp_new */
2300 PyType_GenericNew, /* tp_new */
2439 PyType_GenericNew, /* tp_new */
/external/python/cpython3/Modules/_io/
Dbufferedio.c2465 PyType_GenericNew, /* tp_new */
2552 PyType_GenericNew, /* tp_new */
2631 PyType_GenericNew, /* tp_new */
2726 PyType_GenericNew, /* tp_new */
/external/python/cpython3/Doc/extending/
Dnewtypes_tutorial.rst95 .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/
Drefcounts.dat1405 PyType_GenericNew:PyObject*::+1:
1406 PyType_GenericNew:PyObject*:type:0:
1407 PyType_GenericNew:PyObject*:args:0:
1408 PyType_GenericNew:PyObject*:kwds:0:

123