Home
last modified time | relevance | path

Searched refs:init_globals (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/
Drunpy.py63 def _run_code(code, run_globals, init_globals=None, argument
67 if init_globals is not None:
68 run_globals.update(init_globals)
89 def _run_module_code(code, init_globals=None, argument
96 _run_code(code, mod_globals, init_globals,
199 def run_module(mod_name, init_globals=None, argument
209 return _run_module_code(code, init_globals, run_name, mod_spec)
212 return _run_code(code, {}, init_globals, run_name, mod_spec)
245 def run_path(path_name, init_globals=None, run_name=None): argument
269 return _run_module_code(code, init_globals, run_name,
[all …]
/third_party/skia/resources/sksl/runtime/
DGlobalVariables.rts7 void init_globals() {
12 init_globals();
/third_party/python/Lib/test/
Dtest_runpy.py155 def create_ns(init_globals): argument
156 return _run_code(example_source, {}, init_globals)
178 def create_ns(init_globals): argument
180 init_globals,
310 def create_ns(init_globals): argument
311 return run_module(mod_name, init_globals, alter_sys=alter_sys)
351 def create_ns(init_globals): argument
352 return run_module(pkg_name, init_globals, alter_sys=alter_sys)
550 def create_ns(init_globals): argument
551 return run_module(mod_name, init_globals, run_name)
[all …]
/third_party/python/Doc/library/
Drunpy.rst30 .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
46 The optional dictionary argument *init_globals* may be used to pre-populate
96 .. function:: run_path(file_path, init_globals=None, run_name=None)
115 The optional dictionary argument *init_globals* may be used to pre-populate
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_sched.h324 void init_globals(val_set &s, bool prealloc);
Dsb_sched.cpp958 init_globals(c->live_after, true); in process_alu()
959 init_globals(c->live_before, true); in process_alu()
1103 void post_scheduler::init_globals(val_set &s, bool prealloc) { in init_globals() function in r600_sb::post_scheduler
1177 init_globals(live, false); in schedule_alu()
1192 init_globals(live, false); in schedule_alu()
/third_party/mesa3d/src/gallium/tests/trivial/
Dcompute.c405 static void init_globals(struct context *ctx, const int *slots, in init_globals() function
668 init_globals(ctx, (int []){ 0, 1, 2, 3, -1 }, in test_input_global()