/external/python/cpython2/Lib/test/ |
D | test_runpy.py | 13 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/ |
D | test_runpy.py | 22 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/ |
D | module.sh | 26 run_module 56 run_module() { function
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | python_checks.py | 41 def run_module(*args, **kwargs): function 82 run_module( 127 run_module(
|
/external/autotest/utils/ |
D | unittest_suite.py | 236 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__.py | 30 runpy.run_module(mod, run_name='__main__')
|
/external/python/cpython3/Modules/ |
D | main.c | 86 || 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/ |
D | initconfig.c | 602 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/ |
D | vectorize.ml | 48 ++ PassManager.run_module m
|
D | ipo.ml | 64 ++ PassManager.run_module m
|
/external/llvm-project/llvm/test/Bindings/OCaml/ |
D | vectorize.ml | 47 ++ PassManager.run_module m
|
D | ipo.ml | 63 ++ PassManager.run_module m
|
/external/python/cpython2/Doc/library/ |
D | runpy.rst | 23 .. 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/ |
D | pyoxidizer.bzl.tmpl | 20 run_module='pw_env_setup.env_setup',
|
/external/python/cpython3/Doc/library/ |
D | runpy.rst | 30 .. 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/ |
D | initconfig.h | 402 wchar_t *run_module; /* -m command line argument */ member
|
/external/python/cpython3/Lib/ |
D | cProfile.py | 164 'run_module': runpy.run_module,
|
D | runpy.py | 200 def run_module(mod_name, init_globals=None, function
|
D | profile.py | 584 'run_module': runpy.run_module,
|
/external/python/cpython3/PC/ |
D | python_uwp.cpp | 217 status = PyConfig_SetString(&config, &config.run_module, moduleName); in wmain()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | spawn.py | 258 main_content = runpy.run_module(mod_name,
|
/external/python/cpython2/Lib/ |
D | runpy.py | 176 def run_module(mod_name, init_globals=None, function
|
/external/python/cpython3/Doc/c-api/ |
D | init_config.rst | 635 .. 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/ |
D | cmdline.rst | 115 .. audit-event:: cpython.run_module module-name cmdoption-m 118 :func:`runpy.run_module`
|
/external/python/cpython2/Doc/using/ |
D | cmdline.rst | 108 :func:`runpy.run_module`
|