Home
last modified time | relevance | path

Searched refs:exit_on_error (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/frontends/va/
Dimage.c352 goto exit_on_error; in vlVaDeriveImage()
401 goto exit_on_error; in vlVaDeriveImage()
407 goto exit_on_error; in vlVaDeriveImage()
426 exit_on_error: in vlVaDeriveImage()
/third_party/ffmpeg/fftools/
Dffmpeg.c831 if (exit_on_error) in write_packet()
836 if (exit_on_error) { in write_packet()
918 if(exit_on_error) in output_packet()
1074 if (exit_on_error) in do_subtitle_out()
2152 if (ret < 0 && exit_on_error) in check_decode_result()
2157 av_log(NULL, exit_on_error ? AV_LOG_FATAL : AV_LOG_WARNING, in check_decode_result()
2159 if (exit_on_error) in check_decode_result()
2727 if (!decode_failed || exit_on_error) in process_input_packet()
4389 if (exit_on_error) in process_input()
4437 av_log(NULL, exit_on_error ? AV_LOG_FATAL : AV_LOG_WARNING, in process_input()
[all …]
Dffmpeg.h621 extern int exit_on_error;
Dffmpeg_opt.c167 int exit_on_error = 0; variable
3545 { "xerror", OPT_BOOL | OPT_EXPERT, { &exit_on_error },
/third_party/python/Lib/
Dargparse.py1706 exit_on_error=True): argument
1725 self.exit_on_error = exit_on_error
1856 if self.exit_on_error:
/third_party/python/Doc/library/
Dargparse.rst145 add_help=True, allow_abbrev=True, exit_on_error=True)
194 *exit_on_error* parameter was added.
657 exit_on_error section in ArgumentParser objects
664 ``exit_on_error`` to ``False``::
666 >>> parser = argparse.ArgumentParser(exit_on_error=False)
/third_party/python/Lib/test/
Dtest_argparse.py5424 self.parser = argparse.ArgumentParser(exit_on_error=False)
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst2122 Add optional keyword argument ``exit_on_error`` for :class:`ArgumentParser`.