Searched refs:stop_after (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/distutils/ |
D | core.py | 171 def run_setup(script_name, script_args=None, stop_after="run"): argument 202 if stop_after not in ('init', 'config', 'commandline', 'run'): 203 raise ValueError, "invalid value for 'stop_after': %r" % (stop_after,) 206 _setup_stop_after = stop_after
|
/external/python/cpython3/Lib/distutils/ |
D | core.py | 170 def run_setup (script_name, script_args=None, stop_after="run"): argument 201 if stop_after not in ('init', 'config', 'commandline', 'run'): 202 raise ValueError("invalid value for 'stop_after': %r" % (stop_after,)) 205 _setup_stop_after = stop_after
|
/external/libaom/libaom/apps/ |
D | aomdec.c | 440 int stop_after = 0, postproc = 0, summary = 0, quiet = 1; in main_loop() local 536 stop_after = arg_parse_uint(&arg); in main_loop() 744 if (!stop_after || frame_in < stop_after) { in main_loop()
|
/external/libvpx/libvpx/ |
D | vpxdec.c | 527 int stop_after = 0, postproc = 0, summary = 0, quiet = 1; in main_loop() local 617 stop_after = arg_parse_uint(&arg); in main_loop() 839 if (!stop_after || frame_in < stop_after) { in main_loop()
|
/external/libaom/libaom/examples/ |
D | inspect.c | 73 static int stop_after = 0; variable 908 stop_after = arg_parse_uint(&arg); in parse_args() 938 if (stop_after && (decoded_frame_count >= stop_after)) break; in main()
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 115 .. function:: run_setup(script_name[, script_args=None, stop_after='run']) 128 *stop_after* tells :func:`setup` when to stop processing; possible values:
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 115 .. function:: run_setup(script_name[, script_args=None, stop_after='run']) 128 *stop_after* tells :func:`setup` when to stop processing; possible values:
|