/external/python/cpython2/Lib/ |
D | runpy.py | 62 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/ |
D | runpy.py | 64 def _run_code(code, run_globals, init_globals=None, argument 68 if init_globals is not None: 69 run_globals.update(init_globals) 90 def _run_module_code(code, init_globals=None, argument 97 _run_code(code, mod_globals, init_globals, 200 def run_module(mod_name, init_globals=None, argument 210 return _run_module_code(code, init_globals, run_name, mod_spec) 213 return _run_code(code, {}, init_globals, run_name, mod_spec) 245 def run_path(path_name, init_globals=None, run_name=None): argument 268 return _run_module_code(code, init_globals, run_name, [all …]
|
/external/skia/resources/sksl/runtime/ |
D | GlobalVariables.rts | 7 void init_globals() { 12 init_globals();
|
/external/python/cpython3/Lib/test/ |
D | test_runpy.py | 155 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 …]
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | backup_poller.cc | 59 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/ |
D | runpy.rst | 23 .. 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/ |
D | runpy.rst | 30 .. 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/arm-trusted-firmware/drivers/brcm/emmc/ |
D | emmc_pboot_hal_memory_drv.c | 45 static void init_globals(void) in init_globals() function 113 init_globals(); in bcm_emmc_init()
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_sched.h | 324 void init_globals(val_set &s, bool prealloc);
|
D | sb_sched.cpp | 958 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()
|
/external/mesa3d/src/gallium/tests/trivial/ |
D | compute.c | 405 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()
|