/external/python/cpython2/Lib/ |
D | optparse.py | 788 return self.take_action( 791 def take_action(self, action, dest, opt, value, values, parser): member in Option
|
D | argparse.py | 1793 def take_action(action, argument_strings, option_string=None): function 1883 take_action(action, args, option_string) 1902 take_action(action, args)
|
/external/python/cpython3/Lib/ |
D | optparse.py | 784 return self.take_action( 787 def take_action(self, action, dest, opt, value, values, parser): member in Option
|
D | argparse.py | 1910 def take_action(action, argument_strings, option_string=None): function 2000 take_action(action, args, option_string) 2019 take_action(action, args)
|
/external/llvm-project/polly/utils/ |
D | argparse.py | 1782 def take_action(action, argument_strings, option_string=None): function 1872 take_action(action, args, option_string) 1891 take_action(action, args)
|
/external/python/cpython2/Lib/test/ |
D | test_optparse.py | 1072 def take_action(self, action, dest, opt, value, values, parser): member in TestExtendAddActions.MyOption 1077 Option.take_action(self, action, dest, opt, parser, value,
|
/external/python/cpython3/Lib/test/ |
D | test_optparse.py | 1070 def take_action(self, action, dest, opt, value, values, parser): member in TestExtendAddActions.MyOption 1075 Option.take_action(self, action, dest, opt, parser, value,
|
/external/python/cpython3/Doc/library/ |
D | optparse.rst | 1977 :meth:`take_action` method and add a case that recognizes your action. 2001 def take_action(self, action, dest, opt, value, values, parser): 2006 Option.take_action( 2019 * :meth:`MyOption.take_action` implements just this one new action, and passes 2020 control back to :meth:`Option.take_action` for the standard :mod:`optparse`
|
/external/python/cpython2/Doc/library/ |
D | optparse.rst | 1979 :meth:`take_action` method and add a case that recognizes your action. 2003 def take_action(self, action, dest, opt, value, values, parser): 2008 Option.take_action( 2021 * :meth:`MyOption.take_action` implements just this one new action, and passes 2022 control back to :meth:`Option.take_action` for the standard :mod:`optparse`
|