Lines Matching refs:title
189 def __init__(self, title, report): argument
191 self.title = title
196 report_lines = [self._Indent(base_indent, self.title + ' =>\n')]
204 def __init__(self, title=None): argument
206 self.title = title
212 if self.title:
214 '=== %s ===\n' % self.title))
270 def AddSubReport(self, title): argument
273 sub_report = self.SubReportNode(title, type(self)())
277 def AddSection(self, title): argument
280 self.last_section = self.SectionNode(title)