Home
last modified time | relevance | path

Searched refs:run_module (Results 1 – 25 of 30) 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.py19 from runpy import _run_code, _run_module_code, run_module, run_path
188 run_module(mod_name)
210 self.assertEqual(run_module("runpy")["__name__"], "runpy")
309 return run_module(mod_name, init_globals, alter_sys=alter_sys)
350 return run_module(pkg_name, init_globals, alter_sys=alter_sys)
407 d1 = run_module(mod_name, run_name=run_name) # Read from source
421 d2 = run_module(mod_name, run_name=run_name) # Read from bytecode
462 run_module(mod_name)
468 run_module(mod_name + ".submodule")
480 run_module(mod_name)
[all …]
/external/autotest/utils/
Dunittest_suite.py254 run_module = lambda module=module_names: run_test(module, options) function
256 run_module.__name__ = name
257 functions[run_module] = set()
/external/fonttools/Lib/fontTools/
D__main__.py29 runpy.run_module(mod, run_name='__main__')
/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/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/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/
Dvectorize.ml47 ++ PassManager.run_module m
Dipo.ml64 ++ PassManager.run_module m
/external/llvm/test/Bindings/OCaml/
Dvectorize.ml48 ++ PassManager.run_module m
Dipo.ml64 ++ PassManager.run_module m
Dcore.ml1437 ++ PassManager.run_module m
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dipo_opts.ml63 ++ PassManager.run_module m
Dvmcore.ml1291 ++ PassManager.run_module m
/external/python/cpython3/Lib/
DcProfile.py152 'run_module': runpy.run_module,
Drunpy.py195 def run_module(mod_name, init_globals=None, function
/external/python/cpython3/Lib/multiprocessing/
Dspawn.py247 main_content = runpy.run_module(mod_name,
/external/python/cpython2/Lib/
Drunpy.py176 def run_module(mod_name, init_globals=None, function
/external/python/cpython2/Doc/using/
Dcmdline.rst108 :func:`runpy.run_module`
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst381 Warn if a submodule argument to "python -m" or runpy.run_module() is found
D3.5.3rc1.rst329 Warn if a submodule argument to "python -m" or runpy.run_module() is found
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml1376 external run_module : llmodule -> [ `Module ] t -> bool
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/
Dllvm.ml1365 external run_module : llmodule -> [ `Module ] t -> bool
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Dllvm.ml1181 external run_module : llmodule -> [ `Module ] t -> bool
Dllvm.mli2374 (** [run_module m pm] initializes, executes on the module [m], and finalizes
2378 val run_module : llmodule -> [ `Module ] t -> bool val
/external/python/cpython3/Doc/using/
Dcmdline.rst110 :func:`runpy.run_module`

12