Lines Matching defs:flist
199 def comchk(root, parent, flist, output):
206 def mapfilechk(root, parent, flist, output):
224 for f in flist(lambda x: MapfileRE.match(x) and not
230 def copyright(root, parent, flist, output):
233 for f in flist():
238 def hdrchk(root, parent, flist, output):
241 for f in flist(lambda x: x.endswith('.h')):
246 def cstyle(root, parent, flist, output):
249 for f in flist(lambda x: x.endswith('.c') or x.endswith('.h')):
256 def jstyle(root, parent, flist, output):
259 for f in flist(lambda x: x.endswith('.java')):
264 def manlint(root, parent, flist, output):
268 for f in flist(lambda x: ManfileRE.match(x)):
273 def keywords(root, parent, flist, output):
276 for f in flist():