Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Drunpy.py62 def _run_code(code, run_globals, init_globals=None, argument
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None, argument
81 _run_code(code, mod_globals, init_globals,
176 def run_module(mod_name, init_globals=None, argument
187 return _run_module_code(code, init_globals, run_name,
191 return _run_code(code, {}, init_globals, run_name,
235 def run_path(path_name, init_globals=None, run_name=None): argument
252 return _run_module_code(code, init_globals, run_name, path_name)
[all …]
/external/python/cpython3/Lib/
Drunpy.py62 def _run_code(code, run_globals, init_globals=None, argument
66 if init_globals is not None:
67 run_globals.update(init_globals)
88 def _run_module_code(code, init_globals=None, argument
95 _run_code(code, mod_globals, init_globals,
195 def run_module(mod_name, init_globals=None, argument
205 return _run_module_code(code, init_globals, run_name, mod_spec)
208 return _run_code(code, {}, init_globals, run_name, mod_spec)
239 def run_path(path_name, init_globals=None, run_name=None): argument
262 return _run_module_code(code, init_globals, run_name,
[all …]
/external/python/cpython3/Lib/test/
Dtest_runpy.py152 def create_ns(init_globals): argument
153 return _run_code(example_source, {}, init_globals)
175 def create_ns(init_globals): argument
177 init_globals,
308 def create_ns(init_globals): argument
309 return run_module(mod_name, init_globals, alter_sys=alter_sys)
349 def create_ns(init_globals): argument
350 return run_module(pkg_name, init_globals, alter_sys=alter_sys)
548 def create_ns(init_globals): argument
549 return run_module(mod_name, init_globals, run_name)
[all …]
/external/grpc-grpc/src/core/ext/filters/client_channel/
Dbackup_poller.cc59 static void init_globals() { in init_globals() function
150 gpr_once_init(&g_once, init_globals); in grpc_client_channel_start_backup_polling()
/external/python/cpython2/Doc/library/
Drunpy.rst23 .. function:: run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
38 The optional dictionary argument *init_globals* may be used to pre-populate
84 .. function:: run_path(file_path, init_globals=None, run_name=None)
103 The optional dictionary argument *init_globals* may be used to pre-populate
/external/python/cpython3/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
/external/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
1170 init_globals(live, false); in schedule_alu()
1185 init_globals(live, false); in schedule_alu()
/external/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()