Lines Matching refs:output
199 def comchk(root, parent, flist, output): argument
200 output.write("Comments:\n")
203 output=output)
206 def mapfilechk(root, parent, flist, output): argument
222 output.write("Mapfile comments:\n")
227 ret |= Mapfile.mapfilechk(fh, output=output)
230 def copyright(root, parent, flist, output): argument
232 output.write("Copyrights:\n")
235 ret |= Copyright.copyright(fh, output=output)
238 def hdrchk(root, parent, flist, output): argument
240 output.write("Header format:\n")
243 ret |= HdrChk.hdrchk(fh, lenient=True, output=output)
246 def cstyle(root, parent, flist, output): argument
248 output.write("C style:\n")
251 ret |= CStyle.cstyle(fh, output=output, picky=True,
256 def jstyle(root, parent, flist, output): argument
258 output.write("Java style:\n")
261 ret |= JStyle.jstyle(fh, output=output, picky=True)
264 def manlint(root, parent, flist, output): argument
266 output.write("Man page format:\n")
270 ret |= ManLint.manlint(fh, output=output, picky=True)
273 def keywords(root, parent, flist, output): argument
275 output.write("SCCS Keywords:\n")
278 ret |= Keywords.keywords(fh, output=output)
297 output=s)