/external/pigweed/pw_cli/py/pw_cli/ |
D | pw_command_plugins.py | 50 print(arguments.format_help(_plugin_registry), file=sys.stderr) 66 def format_help() -> str: function 67 return arguments.format_help(_plugin_registry)
|
D | __main__.py | 44 print(pw_command_plugins.format_help(), file=sys.stderr)
|
D | arguments.py | 42 def format_help(registry: plugins.Registry) -> str: function
|
/external/llvm-project/lldb/examples/python/ |
D | cmdtemplate.py | 27 cls.__doc__ = parser.format_help() 99 self.help_string = self.parser.format_help()
|
D | lldb_module_utils.py | 38 self.help_string = self.parser.format_help() 136 self.help_string = self.parser.format_help()
|
D | memory.py | 203 print(create_memfind_options().format_help(), file=result) 274 memfind_command.__doc__ = create_memfind_options().format_help()
|
D | bsd.py | 459 self.help_string = self.parser.format_help()
|
/external/llvm-project/debuginfo-tests/dexter/dex/utils/ |
D | ExtArgParse.py | 62 def format_help(self): member in ExtArgumentParser 63 return _colorize(super(ExtArgumentParser, self).format_help() + '\n\n')
|
/external/llvm-project/clang/utils/ |
D | clangdiag.py | 21 def format_help(self): member in MyParser 188 the_diag_command.__doc__ = parser.format_help()
|
/external/llvm-project/debuginfo-tests/dexter/dex/tools/no_tool_/ |
D | Tool.py | 44 self.parser.format_help()))
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | markdown.py | 94 def format_help(self): member in MarkdownHelpFormatter 96 return super(MarkdownHelpFormatter, self).format_help()
|
/external/python/cpython2/Lib/ |
D | argparse.py | 205 def format_help(self): member in HelpFormatter._Section 239 self._add_item(section.format_help, []) 280 def format_help(self): member in HelpFormatter 281 help = self._root_section.format_help() 1026 parser.exit(message=formatter.format_help()) 1674 kwargs['prog'] = formatter.format_help().strip() 2295 return formatter.format_help() 2297 def format_help(self): member in ArgumentParser 2318 return formatter.format_help() 2328 return formatter.format_help() [all …]
|
D | optparse.py | 1080 def format_help(self, formatter): member in OptionContainer 1111 def format_help(self, formatter): member in OptionGroup 1114 result += OptionContainer.format_help(self, formatter) 1633 result.append(group.format_help(formatter)) 1642 def format_help(self, formatter=None): member in OptionParser 1670 file.write(self.format_help().encode(encoding, "replace"))
|
/external/llvm-project/polly/utils/ |
D | argparse.py | 238 def format_help(self): member in HelpFormatter._Section 272 self._add_item(section.format_help, []) 313 def format_help(self): member in HelpFormatter 314 help = self._root_section.format_help() 1049 parser.exit(message=formatter.format_help()) 1667 kwargs['prog'] = formatter.format_help().strip() 2270 return formatter.format_help() 2272 def format_help(self): member in ArgumentParser 2293 return formatter.format_help() 2303 return formatter.format_help() [all …]
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | local_cli_wrapper.py | 582 self._argparsers["run"].format_help(), 587 self._argparsers["run_info"].format_help(), 592 self._argparsers["print_feed"].format_help(),
|
/external/python/cpython3/Lib/unittest/ |
D | main.py | 113 print(self._main_parser.format_help()) 117 print(self._main_parser.format_help())
|
/external/python/cpython3/Lib/ |
D | optparse.py | 1067 def format_help(self, formatter): member in OptionContainer 1098 def format_help(self, formatter): member in OptionGroup 1101 result += OptionContainer.format_help(self, formatter) 1618 result.append(group.format_help(formatter)) 1627 def format_help(self, formatter=None): member in OptionParser 1647 file.write(self.format_help())
|
D | argparse.py | 209 def format_help(self): member in HelpFormatter._Section 241 self._add_item(section.format_help, []) 282 def format_help(self): member in HelpFormatter 283 help = self._root_section.format_help() 1118 parser._print_message(formatter.format_help(), _sys.stdout) 1787 kwargs['prog'] = formatter.format_help().strip() 2509 return formatter.format_help() 2511 def format_help(self): member in ArgumentParser 2532 return formatter.format_help() 2548 self._print_message(self.format_help(), file)
|
/external/python/cpython2/Lib/test/ |
D | test_argparse.py | 1862 self.assertEqual(self.parser.format_help(), textwrap.dedent('''\ 1881 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 1900 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 1917 self.assertEqual(self.command_help_parser.format_help(), 1947 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 2170 parser_help = parser.format_help() 2204 parser_help = parser.format_help() 2261 self.assertEqual(parser.format_help(), textwrap.dedent(expected)) 2301 format_help = self.get_parser(required=False).format_help 2303 self.assertEqual(format_help(), textwrap.dedent(help)) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_argparse.py | 2071 self.assertEqual(self.parser.format_help(), textwrap.dedent('''\ 2090 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 2111 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 2126 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 2143 self.assertEqual(self.command_help_parser.format_help(), 2173 self.assertEqual(parser.format_help(), textwrap.dedent('''\ 2243 self.assertEqual(parser.format_help(), textwrap.dedent("""\ 2430 parser_help = parser.format_help() 2464 parser_help = parser.format_help() 2521 self.assertEqual(parser.format_help(), textwrap.dedent(expected)) [all …]
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | base_ui.py | 69 self._config_argparser.format_help(),
|
D | profile_analyzer_cli.py | 765 return self._arg_parsers[handler_name].format_help()
|
D | analyzer_cli.py | 479 return self._arg_parsers[handler_name].format_help()
|
/external/llvm-project/lldb/examples/darwin/heap_find/ |
D | heap.py | 1501 ptr_refs.__doc__ = get_ptr_refs_options().format_help() 1502 cstr_refs.__doc__ = get_cstr_refs_options().format_help() 1503 malloc_info.__doc__ = get_malloc_info_options().format_help() 1504 objc_refs.__doc__ = get_objc_refs_options().format_help()
|
/external/toolchain-utils/binary_search_tool/ |
D | run_bisect.py | 325 epilog = _HELP_EPILOG + override_parser.format_help()
|