Home
last modified time | relevance | path

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

/external/vixl/tools/
Dutil.py202 def __init__(self, exit_on_error, printer_fn): argument
204 self.exit_on_error = exit_on_error
209 if self.exit_on_error and rc != 0:
/external/squashfs-tools/squashfs-tools/
Derror.h27 extern int exit_on_error;
61 if (exit_on_error) { \
Dmksquashfs.c121 int exit_on_error = FALSE; variable
6081 exit_on_error = TRUE; in main()
/external/pigweed/pw_env_setup/py/pw_env_setup/
Denvironment.py219 exit_on_error = kwargs.pop('exit_on_error', True)
223 self.exit_on_error = exit_on_error
366 def command(self, command, exit_on_error=True): argument
369 self._actions.append(Command(command, exit_on_error=exit_on_error))
Dbatch_visitor.py99 if not command.exit_on_error:
Dshell_visitor.py124 if not command.exit_on_error:
/external/python/cpython3/Lib/
Dargparse.py1699 exit_on_error=True): argument
1718 self.exit_on_error = exit_on_error
1849 if self.exit_on_error:
/external/python/cpython3/Doc/library/
Dargparse.rst145 add_help=True, allow_abbrev=True, exit_on_error=True)
193 *exit_on_error* parameter was added.
656 exit_on_error section in ArgumentParser objects
663 ``exit_on_error`` to ``False``::
665 >>> parser = argparse.ArgumentParser(exit_on_error=False)
/external/python/cpython3/Lib/test/
Dtest_argparse.py5348 self.parser = argparse.ArgumentParser(exit_on_error=False)
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst2122 Add optional keyword argument ``exit_on_error`` for :class:`ArgumentParser`.