Lines Matching refs:output

269 def comchk(root, parent, flist, output):  argument
271 output.write("Comments:\n")
283 output=s, bugs=state)
288 output.write('\n%s\n' % commit[0])
289 output.write(s.getvalue())
294 def copyright(root, parent, flist, output): argument
299 output.write("Copyrights:\n")
302 ret |= Copyright.copyright(fh, output=output)
306 def cstyle(root, parent, flist, output): argument
309 output.write("C style:\n")
312 ret |= CStyle.cstyle(fh, output=output, picky=True,
318 def hdrchk(root, parent, flist, output): argument
321 output.write("Header format:\n")
324 ret |= HdrChk.hdrchk(fh, lenient=True, output=output)
328 def jstyle(root, parent, flist, output): argument
333 output.write("Java style:\n")
336 ret |= JStyle.jstyle(fh, output=output, picky=True)
340 def keywords(root, parent, flist, output): argument
350 output.write("SCCS Keywords:\n")
353 ret |= Keywords.keywords(fh, output=output)
357 def manlint(root, parent, flist, output): argument
361 output.write("Man page format/spelling:\n")
365 ret |= ManLint.manlint(fh, output=output, picky=True)
366 ret |= SpellCheck.spellcheck(fh, output=output)
370 def mapfilechk(root, parent, flist, output): argument
388 output.write("Mapfile comments:\n")
393 ret |= Mapfile.mapfilechk(fh, output=output)
397 def shelllint(root, parent, flist, output): argument
400 output.write("Shell lint:\n")
414 ret |= ShellLint.lint(fh, output=output)
419 def pkgfmt(root, parent, flist, output): argument
422 output.write("Package manifests:\n")
426 ret |= PkgFmt.check(fh, output=output)
451 def winnames(root, parent, flist, output): argument
454 output.write("Illegal filenames (Windows):\n")
457 output.write(" "+f+": invalid character in name\n")
464 output.write(" "+f+": reserved file name\n")
471 def wscheck(root, parent, flist, output): argument
474 output.write("white space nits:\n")
477 ret |= WsCheck.wscheck(fh, output=output)
481 def symlinks(root, parent, flist, output): argument
484 output.write("Symbolic links:\n")
486 output.write(" "+f+"\n")
508 output=s)