Lines Matching refs:stats
147 def check_documented(document, declarations, stats): argument
150 stats['total'] += len(items)
170 stats['missing'] += len(missing)
196 def subst_output(document, programlisting, stats): argument
223 missing = check_documented(document, declarations, stats)
287 stats = collections.Counter()
291 subst_output(xml, pl, stats)
304 return dict(stats=stats, modified=(out_text != src))
327 stats = {page.split('/')[-1] : process(page) for page in opts.pages} variable
330 mlen = max(len(page) for page in stats)
331 total = sum((item['stats'] for item in stats.values()), collections.Counter())
332 total = 'total', dict(stats=total, modified=False)
335 for page, info in sorted(stats.items()) + [total]: