HomeSort by relevance Sort by last modified time
    Searched refs:init_globals (Results 1 - 23 of 23) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
164 def run_module(mod_name, init_globals=None,
175 return _run_module_code(code, init_globals, run_name,
179 return _run_code(code, {}, init_globals, run_name,
223 def run_path(path_name, init_globals=None, run_name=None):
240 return _run_module_code(code, init_globals, run_name, path_name)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
164 def run_module(mod_name, init_globals=None,
175 return _run_module_code(code, init_globals, run_name,
179 return _run_code(code, {}, init_globals, run_name,
223 def run_path(path_name, init_globals=None, run_name=None):
240 return _run_module_code(code, init_globals, run_name, path_name)
    [all...]
  /external/python/cpython2/Lib/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
176 def run_module(mod_name, init_globals=None,
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):
252 return _run_module_code(code, init_globals, run_name, path_name
    [all...]
  /external/python/cpython3/Lib/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
88 def _run_module_code(code, init_globals=None,
95 _run_code(code, mod_globals, init_globals,
195 def run_module(mod_name, init_globals=None,
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):
262 return _run_module_code(code, init_globals, run_name
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
164 def run_module(mod_name, init_globals=None,
175 return _run_module_code(code, init_globals, run_name,
179 return _run_code(code, {}, init_globals, run_name,
223 def run_path(path_name, init_globals=None, run_name=None):
240 return _run_module_code(code, init_globals, run_name, path_name
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
164 def run_module(mod_name, init_globals=None,
175 return _run_module_code(code, init_globals, run_name,
179 return _run_code(code, {}, init_globals, run_name,
223 def run_path(path_name, init_globals=None, run_name=None):
240 return _run_module_code(code, init_globals, run_name, path_name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
164 def run_module(mod_name, init_globals=None,
175 return _run_module_code(code, init_globals, run_name,
179 return _run_code(code, {}, init_globals, run_name,
223 def run_path(path_name, init_globals=None, run_name=None):
240 return _run_module_code(code, init_globals, run_name, path_name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
runpy.py 62 def _run_code(code, run_globals, init_globals=None,
66 if init_globals is not None:
67 run_globals.update(init_globals)
75 def _run_module_code(code, init_globals=None,
81 _run_code(code, mod_globals, init_globals,
164 def run_module(mod_name, init_globals=None,
175 return _run_module_code(code, init_globals, run_name,
179 return _run_code(code, {}, init_globals, run_name,
223 def run_path(path_name, init_globals=None, run_name=None):
240 return _run_module_code(code, init_globals, run_name, path_name
    [all...]
  /external/python/cpython3/Lib/test/
test_runpy.py 152 def create_ns(init_globals):
153 return _run_code(example_source, {}, init_globals)
175 def create_ns(init_globals):
177 init_globals,
308 def create_ns(init_globals):
309 return run_module(mod_name, init_globals, alter_sys=alter_sys)
349 def create_ns(init_globals):
350 return run_module(pkg_name, init_globals, alter_sys=alter_sys)
548 def create_ns(init_globals):
549 return run_module(mod_name, init_globals, run_name
    [all...]
  /device/google/marlin/liblight/
lights.c 96 void init_globals(void) function
346 pthread_once(&g_init, init_globals);
  /device/google/wahoo/liblight/
lights.c 96 void init_globals(void) function
345 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8084/liblight/
lights.c 71 void init_globals(void) function
271 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8226/liblight/
lights.c 71 void init_globals(void) function
290 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8909/liblight/
lights.c 86 void init_globals(void) function
377 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8909w_3100/liblight/
lights.c 86 void init_globals(void) function
371 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8960/liblight/
lights.c 76 void init_globals(void) function
299 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8994/liblight/
lights.c 72 void init_globals(void) function
291 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8996/liblight/
lights.c 72 void init_globals(void) function
300 pthread_once(&g_init, init_globals);
  /hardware/qcom/display/msm8998/liblight/
lights.c 84 void init_globals(void) function
337 pthread_once(&g_init, init_globals);
  /test/vts/hals/light/bullhead/
lights.c 53 void init_globals(void) function
237 pthread_once(&g_init, init_globals);
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_sched.h 319 void init_globals(val_set &s, bool prealloc);
sb_sched.cpp 946 init_globals(c->live_after, true);
947 init_globals(c->live_before, true);
1091 void post_scheduler::init_globals(val_set &s, bool prealloc) { function in class:r600_sb::post_scheduler
1094 sblog << "init_globals: ";
1150 init_globals(live, false);
1165 init_globals(live, false);
    [all...]
  /external/mesa3d/src/gallium/tests/trivial/
compute.c 405 static void init_globals(struct context *ctx, const int *slots, function
668 init_globals(ctx, (int []){ 0, 1, 2, 3, -1 }, function
    [all...]

Completed in 969 milliseconds