/external/openssh/ |
mdoc2man.awk | 31 synopsis=0 162 synopsis=match(words[w+1],"SYNOPSIS") 210 if(synopsis) {
|
/external/ImageMagick/scripts/ |
format_c_api_docs | 326 # %synopsis - Function synopsis 341 undef %synopsis; 371 # Extract and save synopsis info 390 $synopsis{$ftitle} = $_ . ';'; # Append semi-colon, prototype style 391 print ( TMP " " . $synopsis{$ftitle} . "\n" ); 395 $synopsis{$ftitle} = $_; 402 $synopsis{$ftitle} .= $_; 404 $_ = $synopsis{$ftitle}; 419 $synopsis{$ftitle} = $_ . ';'; # Append semi-colon, prototype styl [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
CommandLine.py | 251 # [synopsis] - formatted as '<self.name> %s' % self.synopsis
271 # Synopsis (%(name)s is replaced by the program name)
272 synopsis = '%(name)s [option] files...'
variable in class:Application 494 if self.synopsis:
495 print 'Synopsis:'
498 synopsis = self.synopsis % self.name
500 synopsis = self.synopsis % self.__dict__ [all...] |
/external/python/cpython2/Tools/pybench/ |
CommandLine.py | 251 # [synopsis] - formatted as '<self.name> %s' % self.synopsis 271 # Synopsis (%(name)s is replaced by the program name) 272 synopsis = '%(name)s [option] files...' variable in class:Application 494 if self.synopsis: 495 print 'Synopsis:' 498 synopsis = self.synopsis % self.name 500 synopsis = self.synopsis % self.__dict_ [all...] |
/external/dtc/ |
util.h | 209 * @param synopsis The initial example usage text (and possible examples) 214 void NORETURN util_usage(const char *errmsg, const char *synopsis,
|
util.c | 421 void NORETURN util_usage(const char *errmsg, const char *synopsis, 435 "Options: -[%s]\n", synopsis, short_opts);
|
/external/u-boot/scripts/dtc/ |
util.h | 212 * @param synopsis The initial example usage text (and possible examples) 217 void NORETURN util_usage(const char *errmsg, const char *synopsis,
|
util.c | 421 void NORETURN util_usage(const char *errmsg, const char *synopsis, 435 "Options: -[%s]\n", synopsis, short_opts);
|
/external/python/cpython2/Lib/test/ |
test_pydoc.py | 413 synopsis = pydoc.synopsis(init_path, {}) 414 self.assertEqual(synopsis, 'my doc') 425 synopsis = pydoc.synopsis(init_path, {}) 426 self.assertIsNone(synopsis) 427 synopsis_cached = pydoc.synopsis(cached_path, {})
|
/external/libxml2/doc/examples/ |
index.py | 102 synopsis = info['synopsis'] 103 output.write(" <synopsis>%s</synopsis>\n" % escape(synopsis)); 105 print "Example %s lacks a synopsis description" % (filename) 146 topic != "section" and topic != "synopsis" and topic != "test":
|
/external/python/cpython3/Lib/test/ |
test_pydoc.py | 578 synopsis = pydoc.synopsis(TESTFN, {}) 579 self.assertEqual(synopsis, 'line 1: h\xe9') 586 synopsis = pydoc.synopsis(filename) 588 self.assertEqual(synopsis, expected) 597 synopsis = pydoc.synopsis(init_path, {}) 598 self.assertIsNone(synopsis) 599 synopsis_cached = pydoc.synopsis(cached_path, {} [all...] |
/external/u-boot/tools/ |
fdtgrep.c | 1000 void util_usage(const char *errmsg, const char *synopsis, 1013 "Options: -[%s]\n", synopsis, short_opts);
|
/build/soong/cmd/soong_build/ |
writedocs.go | 37 Synopsis template.HTML 61 Synopsis: m.Text, 345 {{if $moduleType.Synopsis }}{{$moduleType.Synopsis}}{{else}}<i>Missing synopsis</i>{{end}}
|
/external/libunwind/doc/ |
unw_create_addr_space.tex | 11 \section{Synopsis} 49 The synopsis and a detailed description of every call-back routine 52 \subsection{Call-back Routine Synopsis}
|
libunwind-dynamic.tex | 257 following synopsis:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
pydoc.py | 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
49 # loaded modules, so calling synopsis() on a binary module file
87 """Split a doc string into a synopsis line (if any) and the rest."""
212 def synopsis(filename, cache={}):
function [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
pydoc.py | 29 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
63 # loaded modules, so calling synopsis() on a binary module file
102 """Split a doc string into a synopsis line (if any) and the rest."""
257 def synopsis(filename, cache={}):
function [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
pydoc.py | 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
49 # loaded modules, so calling synopsis() on a binary module file
87 """Split a doc string into a synopsis line (if any) and the rest."""
212 def synopsis(filename, cache={}):
function [all...] |
/external/python/cpython2/Lib/ |
pydoc.py | 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines 50 # loaded modules, so calling synopsis() on a binary module file 89 """Split a doc string into a synopsis line (if any) and the rest.""" 244 def synopsis(filename, cache={}): function [all...] |
/external/python/cpython3/Lib/ |
pydoc.py | 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines 51 # - synopsis() cannot be prevented from clobbering existing 98 """Split a doc string into a synopsis line (if any) and the rest.""" 254 def synopsis(filename, cache={}): function [all...] |