Lines Matching refs:flist
206 def comchk(root, parent, flist, output): argument
213 def mapfilechk(root, parent, flist, output): argument
231 for f in flist(lambda x: MapfileRE.match(x) and not
239 def copyright(root, parent, flist, output): argument
242 for f in flist():
249 def hdrchk(root, parent, flist, output): argument
252 for f in flist(lambda x: x.endswith('.h')):
259 def cstyle(root, parent, flist, output): argument
262 for f in flist(lambda x: x.endswith('.c') or x.endswith('.h')):
271 def jstyle(root, parent, flist, output): argument
274 for f in flist(lambda x: x.endswith('.java')):
281 def manlint(root, parent, flist, output): argument
285 for f in flist(lambda x: ManfileRE.match(x)):
291 def keywords(root, parent, flist, output): argument
294 for f in flist():