Lines Matching defs:parent
113 """Return the parent of the current git branch.
125 sys.stderr.write("Failed finding git parent branch\n")
136 def git_comments(parent):
139 p = git('log --pretty=tformat:%%B:SEP: %s..' % parent)
147 def git_file_list(parent, paths=None):
154 (parent, ' '.join(paths)))
176 def gen_files(root, parent, paths, exclude):
193 for f in git_file_list(parent, paths):
199 def comchk(root, parent, flist, output):
202 return Comments.comchk(git_comments(parent), check_db=True,
206 def mapfilechk(root, parent, flist, output):
230 def copyright(root, parent, flist, output):
238 def hdrchk(root, parent, flist, output):
246 def cstyle(root, parent, flist, output):
256 def jstyle(root, parent, flist, output):
264 def manlint(root, parent, flist, output):
273 def keywords(root, parent, flist, output):
281 def run_checks(root, parent, cmds, paths='', opts={}):
296 result = cmd(root, parent, gen_files(root, parent, paths, exclude),
305 def nits(root, parent, paths):
313 run_checks(root, parent, cmds, paths)
315 def pbchk(root, parent, paths):
324 run_checks(root, parent, cmds)