Lines Matching refs:blame
54 def __init__(self, clazz, line, raw, blame, sig_format = 1): argument
58 self.blame = blame
105 def __init__(self, clazz, line, raw, blame, sig_format = 1): argument
109 self.blame = blame
165 def __init__(self, pkg, line, raw, blame, sig_format = 1): argument
169 self.blame = blame
232 def __init__(self, line, raw, blame): argument
235 self.blame = blame
613 blame = None
630 blame = match.groups()[0:2]
631 if blame[0].startswith("^"): # Outside of blame range
632 blame = None
635 blame = None
644 pkg = Package(line, raw, blame)
646 clazz = Class(pkg, line, raw, blame, sig_format=sig_format)
648 clazz.ctors.append(Method(clazz, line, raw, blame, sig_format=sig_format))
650 clazz.methods.append(Method(clazz, line, raw, blame, sig_format=sig_format))
652 clazz.fields.append(Field(clazz, line, raw, blame, sig_format=sig_format))
724 blame = clazz.blame
728 blame = detail.blame
732 if blame is not None:
733 dump += "\n last modified by %s in %s" % (blame[1], blame[0])