Home
last modified time | relevance | path

Searched refs:run_module (Results 1 – 25 of 35) sorted by relevance

12

/external/python/cpython2/Lib/test/
Dtest_runpy.py13 from runpy import _run_code, _run_module_code, run_module, run_path
88 run_module(mod_name)
107 run_module("runpy")
167 d1 = run_module(mod_name) # Read from source
175 d2 = run_module(mod_name) # Read from bytecode
190 d1 = run_module(pkg_name) # Read from source
198 d2 = run_module(pkg_name) # Read from bytecode
243 d1 = run_module(mod_name, run_name=run_name) # Read from source
253 d2 = run_module(mod_name, run_name=run_name) # Read from bytecode
288 run_module(mod_name)
/external/python/cpython3/Lib/test/
Dtest_runpy.py22 from runpy import _run_code, _run_module_code, run_module, run_path
191 run_module(mod_name)
213 self.assertEqual(run_module("runpy")["__name__"], "runpy")
311 return run_module(mod_name, init_globals, alter_sys=alter_sys)
352 return run_module(pkg_name, init_globals, alter_sys=alter_sys)
409 d1 = run_module(mod_name, run_name=run_name) # Read from source
423 d2 = run_module(mod_name, run_name=run_name) # Read from bytecode
464 run_module(mod_name)
470 run_module(mod_name + ".submodule")
482 run_module(mod_name)
[all …]
/external/linux-kselftest/tools/testing/selftests/kselftest/
Dmodule.sh26 run_module
56 run_module() { function
/external/pigweed/pw_presubmit/py/pw_presubmit/
Dpython_checks.py41 def run_module(*args, **kwargs): function
82 run_module(
127 run_module(
/external/autotest/utils/
Dunittest_suite.py236 run_module = lambda module=module_names: run_test(module, options) function
238 run_module.__name__ = name
239 functions[run_module] = set()
/external/fonttools/Lib/fontTools/
D__main__.py30 runpy.run_module(mod, run_name='__main__')
/external/python/cpython3/Modules/
Dmain.c86 || config->run_module != NULL); in config_run_code()
591 else if (config->run_module) { in pymain_run_python()
592 *exitcode = pymain_run_module(config->run_module, 1); in pymain_run_python()
/external/python/cpython3/Python/
Dinitconfig.c602 CLEAR(config->run_module); in PyConfig_Clear()
857 COPY_WSTR_ATTR(run_module); in _PyConfig_Copy()
958 SET_ITEM_WSTR(run_module); in config_as_dict()
1947 if (config->run_module == NULL) { in config_parse_cmdline()
1948 config->run_module = _PyMem_RawWcsdup(_PyOS_optarg); in config_parse_cmdline()
1949 if (config->run_module == NULL) { in config_parse_cmdline()
2069 if (config->run_command == NULL && config->run_module == NULL in config_parse_cmdline()
2080 if (config->run_command != NULL || config->run_module != NULL) { in config_parse_cmdline()
2280 else if (config->run_module != NULL) { in config_update_argv()
2599 assert(!(config->run_command != NULL && config->run_module != NULL)); in PyConfig_Read()
/external/llvm/test/Bindings/OCaml/
Dvectorize.ml48 ++ PassManager.run_module m
Dipo.ml64 ++ PassManager.run_module m
/external/llvm-project/llvm/test/Bindings/OCaml/
Dvectorize.ml47 ++ PassManager.run_module m
Dipo.ml63 ++ PassManager.run_module m
/external/python/cpython2/Doc/library/
Drunpy.rst23 .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
42 overridden by :func:`run_module`.
134 Note that, unlike :func:`run_module`, the alterations made to :mod:`sys`
/external/pigweed/pw_env_setup/py/
Dpyoxidizer.bzl.tmpl20 run_module='pw_env_setup.env_setup',
/external/python/cpython3/Doc/library/
Drunpy.rst30 .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
50 overridden by :func:`run_module`.
148 Note that, unlike :func:`run_module`, the alterations made to :mod:`sys`
/external/python/cpython3/Include/cpython/
Dinitconfig.h402 wchar_t *run_module; /* -m command line argument */ member
/external/python/cpython3/Lib/
DcProfile.py164 'run_module': runpy.run_module,
Drunpy.py200 def run_module(mod_name, init_globals=None, function
Dprofile.py584 'run_module': runpy.run_module,
/external/python/cpython3/PC/
Dpython_uwp.cpp217 status = PyConfig_SetString(&config, &config.run_module, moduleName); in wmain()
/external/python/cpython3/Lib/multiprocessing/
Dspawn.py258 main_content = runpy.run_module(mod_name,
/external/python/cpython2/Lib/
Drunpy.py176 def run_module(mod_name, init_globals=None, function
/external/python/cpython3/Doc/c-api/
Dinit_config.rst635 .. c:member:: wchar_t* run_module
946 * If :c:member:`~PyConfig.run_module` is set, prepend the current directory
975 (:c:member:`PyConfig.run_module`) specified on the command line or in the
/external/python/cpython3/Doc/using/
Dcmdline.rst115 .. audit-event:: cpython.run_module module-name cmdoption-m
118 :func:`runpy.run_module`
/external/python/cpython2/Doc/using/
Dcmdline.rst108 :func:`runpy.run_module`

12