Lines Matching refs:output
206 def comchk(root, parent, flist, output): argument
207 output.write("Comments:\n")
210 output=output)
213 def mapfilechk(root, parent, flist, output): argument
229 output.write("Mapfile comments:\n")
234 ret |= Mapfile.mapfilechk(fh, output=output)
239 def copyright(root, parent, flist, output): argument
241 output.write("Copyrights:\n")
244 ret |= Copyright.copyright(fh, output=output)
249 def hdrchk(root, parent, flist, output): argument
251 output.write("Header format:\n")
254 ret |= HdrChk.hdrchk(fh, lenient=True, output=output)
259 def cstyle(root, parent, flist, output): argument
261 output.write("C style:\n")
264 ret |= CStyle.cstyle(fh, output=output, picky=True,
271 def jstyle(root, parent, flist, output): argument
273 output.write("Java style:\n")
276 ret |= JStyle.jstyle(fh, output=output, picky=True)
281 def manlint(root, parent, flist, output): argument
283 output.write("Man page format:\n")
287 ret |= ManLint.manlint(fh, output=output, picky=True)
291 def keywords(root, parent, flist, output): argument
293 output.write("SCCS Keywords:\n")
296 ret |= Keywords.keywords(fh, output=output)
317 output=s)