Home
last modified time | relevance | path

Searched refs:PyModule_Create (Results 1 – 25 of 52) sorted by relevance

123

/third_party/python/Modules/
D_testimportmultiple.c22 return PyModule_Create(&_testimportmultiple); in PyInit__testimportmultiple()
39 return PyModule_Create(&_foomodule); in PyInit__testimportmultiple_foo()
55 return PyModule_Create(&_barmodule); in PyInit__testimportmultiple_bar()
D_testinternalcapi.c566 PyObject *module = PyModule_Create(&_testcapimodule); in PyInit__testinternalcapi()
D_testmultiphase.c879 PyObject *module = PyModule_Create(&def_module_state_shared); in PyInit__test_module_state_shared()
/third_party/python/Include/
Dmodsupport.h136 #define PyModule_Create(module) \ macro
139 #define PyModule_Create(module) \ macro
/third_party/python/Doc/includes/
Dcustom.c33 m = PyModule_Create(&custommodule); in PyInit_custom()
Dsublist.c57 m = PyModule_Create(&sublistmodule); in PyInit_sublist()
Dcustom2.c126 m = PyModule_Create(&custommodule); in PyInit_custom2()
Dcustom3.c177 m = PyModule_Create(&custommodule); in PyInit_custom3()
Dcustom4.c191 m = PyModule_Create(&custommodule); in PyInit_custom4()
/third_party/python/Modules/_xxtestfuzz/
D_xxtestfuzz.c47 return PyModule_Create(&_fuzzmodule); in PyInit__xxtestfuzz()
/third_party/protobuf/python/google/protobuf/internal/
Dapi_implementation.cc100 PyObject* module = PyModule_Create(&_module); in INITFUNC()
/third_party/protobuf/python/google/protobuf/pyext/
Dmessage_module.cc96 m = PyModule_Create(&_module); in INITFUNC()
/third_party/python/PC/
Dwinsound.c228 PyObject *module = PyModule_Create(&winsoundmodule); in PyInit_winsound()
Dmsvcrtmodule.c585 PyObject *m = PyModule_Create(&msvcrtmodule); in PyInit_msvcrt()
/third_party/python/Tools/peg_generator/peg_extension/
Dpeg_extension.c172 return PyModule_Create(&parsemodule); in PyInit_parse()
/third_party/node/deps/v8/third_party/markupsafe/
D_speedups.c236 return PyModule_Create(&module_definition); in PyInit__speedups()
/third_party/node/tools/inspector_protocol/markupsafe/
D_speedups.c236 return PyModule_Create(&module_definition); in PyInit__speedups()
/third_party/skia/third_party/externals/markupsafe/
D_speedups.c236 return PyModule_Create(&module_definition); in PyInit__speedups()
/third_party/python/Doc/c-api/
Dmodule.rst137 to :c:func:`PyModule_Create`, and return the resulting module object,
255 .. c:function:: PyObject* PyModule_Create(PyModuleDef *def)
270 Most uses of this function should be using :c:func:`PyModule_Create`
421 ``PyModuleDef``, using either ``PyModule_Create`` or
434 ``PyModuleDef``, using either ``PyModule_Create`` or
Dallocation.rst69 :c:func:`PyModule_Create`
/third_party/markupsafe/
D_speedups.c319 return PyModule_Create(&module_definition); in PyInit__speedups()
/third_party/python/Modules/_io/
D_iomodule.c683 PyObject *m = PyModule_Create(&_PyIO_Module); in PyInit__io()
/third_party/selinux/libselinux/src/
Daudit2why.c473 m = PyModule_Create(&moduledef);
/third_party/skia/third_party/externals/brotli/python/
D_brotli.cc700 #define CREATE_BROTLI PyModule_Create(&brotli_module)
/third_party/python/Doc/extending/
Dextending.rst217 m = PyModule_Create(&spammodule);
363 return PyModule_Create(&spammodule);
372 It calls :c:func:`PyModule_Create`, which returns a module object, and
375 :c:func:`PyModule_Create` returns a pointer to the module object
793 return PyModule_Create(&keywdargmodule);
1261 m = PyModule_Create(&spammodule);
1343 m = PyModule_Create(&clientmodule);

123