/external/python/cpython2/Lib/ |
D | argparse.py | 1190 conflict_handler): argument 1196 self.conflict_handler = conflict_handler 1367 conflict_handler=group.conflict_handler) 1445 handler_func_name = '_handle_conflict_%s' % self.conflict_handler 1450 raise ValueError(msg % self.conflict_handler) 1463 conflict_handler = self._get_handler() 1464 conflict_handler(action, confl_optionals) 1493 update('conflict_handler', container.conflict_handler) 1571 conflict_handler='error', argument 1586 conflict_handler=conflict_handler)
|
D | optparse.py | 933 def __init__(self, option_class, conflict_handler, description): argument 941 self.set_conflict_handler(conflict_handler) 963 self.conflict_handler = handler 991 handler = self.conflict_handler 1094 self, parser.option_class, parser.conflict_handler, description) 1196 conflict_handler="error", argument 1203 self, option_class, conflict_handler, description)
|
/external/llvm-project/polly/utils/ |
D | argparse.py | 1194 conflict_handler): argument 1200 self.conflict_handler = conflict_handler 1364 conflict_handler=group.conflict_handler) 1442 handler_func_name = '_handle_conflict_%s' % self.conflict_handler 1447 raise ValueError(msg % self.conflict_handler) 1460 conflict_handler = self._get_handler() 1461 conflict_handler(action, confl_optionals) 1490 update('conflict_handler', container.conflict_handler) 1567 conflict_handler='error', argument 1582 conflict_handler=conflict_handler)
|
/external/python/cpython3/Lib/ |
D | optparse.py | 920 def __init__(self, option_class, conflict_handler, description): argument 928 self.set_conflict_handler(conflict_handler) 950 self.conflict_handler = handler 978 handler = self.conflict_handler 1081 self, parser.option_class, parser.conflict_handler, description) 1183 conflict_handler="error", argument 1190 self, option_class, conflict_handler, description)
|
D | argparse.py | 1307 conflict_handler): argument 1313 self.conflict_handler = conflict_handler 1489 conflict_handler=group.conflict_handler) 1566 handler_func_name = '_handle_conflict_%s' % self.conflict_handler 1571 raise ValueError(msg % self.conflict_handler) 1584 conflict_handler = self._get_handler() 1585 conflict_handler(action, confl_optionals) 1616 update('conflict_handler', container.conflict_handler) 1696 conflict_handler='error', argument 1705 conflict_handler=conflict_handler)
|
/external/chromium-trace/catapult/systrace/bin/ |
D | adb_profile_chrome_startup | 41 'profiling.', conflict_handler='resolve')
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | main.py | 35 'profiling.', conflict_handler='resolve')
|
/external/chromium-trace/catapult/systrace/systrace/ |
D | run_systrace.py | 67 conflict_handler='resolve')
|
/external/python/cpython3/Doc/library/ |
D | argparse.rst | 144 argument_default=None, conflict_handler='error', \ 569 conflict_handler section in ArgumentParser objects 586 ``'resolve'`` can be supplied to the ``conflict_handler=`` argument of 589 >>> parser = argparse.ArgumentParser(prog='PROG', conflict_handler='resolve')
|
D | optparse.rst | 832 ``conflict_handler`` (default: ``"error"``) 1429 parser = OptionParser(..., conflict_handler=handler) 1448 parser = OptionParser(conflict_handler="resolve") 1453 using the ``-n`` option string. Since ``conflict_handler`` is ``"resolve"``,
|
/external/python/cpython2/Doc/library/ |
D | argparse.rst | 143 argument_default=None, conflict_handler='error', \ 513 conflict_handler section in ArgumentParser objects 530 ``'resolve'`` can be supplied to the ``conflict_handler=`` argument of 533 >>> parser = argparse.ArgumentParser(prog='PROG', conflict_handler='resolve')
|
D | optparse.rst | 834 ``conflict_handler`` (default: ``"error"``) 1431 parser = OptionParser(..., conflict_handler=handler) 1450 parser = OptionParser(conflict_handler="resolve") 1455 using the ``-n`` option string. Since ``conflict_handler`` is ``"resolve"``,
|
/external/python/cpython2/Lib/test/ |
D | test_argparse.py | 4254 conflict_handler='foo') 4267 parser = get_parser(prog='PROG', conflict_handler='resolve')
|
/external/python/cpython3/Lib/test/ |
D | test_argparse.py | 4578 conflict_handler='foo') 4591 parser = get_parser(prog='PROG', conflict_handler='resolve')
|