Home | History | Annotate | Download | only in Eot

Lines Matching defs:Report

2 # This file is used to create report for Eot tool

21 ## Report() class
23 # This class defined Report
27 class Report(object):
31 # @param ReportName: name of the report
34 def __init__(self, ReportName = 'Report.html', FvObj = None, DispatchName=None):
49 # Write a line in the report
59 # A caller to generate report
146 SqlCommand = """select DISTINCT GuidName from Report where GuidValue like '%s' and ItemMode = 'Produced' group by GuidName""" % (Item)
201 SqlCommand = """select DISTINCT SourceFileFullPath, BelongsToFunction from Report where GuidName like '%s' and ItemMode = 'Callback'""" % Name
304 SqlCommand = """select ModuleName, ItemType, GuidName, GuidValue, GuidMacro from Report
337 SqlCommand = """select ModuleName, ItemType, GuidName, GuidValue, GuidMacro from Report
376 # Generate end tags of HTML report
388 # Generate start tags of HTML report
397 <title>Execution Order Tool Report</title>
472 report = Report('Report.html', fv)
473 report.GenerateReport()