Lines Matching refs:tbl
113 tbl = table() variable
117 tbl.newColumn('module', 'Module', align = 'left', cssclass = 'col_name')
118 tbl.newColumn('name', 'Testsuit', align = 'left', cssclass = 'col_name')
119 tbl.newColumn('time', 'Time (min)', align = 'center', cssclass = 'col_name')
120 tbl.newColumn('num', 'Num of tests', align = 'center', cssclass = 'col_name')
121 tbl.newColumn('failed', 'Failed', align = 'center', cssclass = 'col_name')
125 tbl.newRow()
126 tbl.newCell('module', suit['module'])
127 tbl.newCell('name', suit['name'])
128 tbl.newCell('time', formatValue(suit['time'], '', ''), suit['time'])
129 tbl.newCell('num', suit['num'])
131 tbl.newCell('failed', suit['failed'])
133 tbl.newCell('failed', ' ')
137 tbl.newColumn('module', 'Module', align = 'left', cssclass = 'col_name')
138 tbl.newColumn('name', 'Testsuit', align = 'left', cssclass = 'col_name')
139 tbl.newColumn('failed', 'Failed', align = 'center', cssclass = 'col_name')
144 tbl.newRow()
145 tbl.newCell('module', suit['module'])
146 tbl.newCell('name', suit['name'])
147 tbl.newCell('failed', suit['failed'])
153 tbl.htmlPrintTable(sys.stdout)
158 tbl.consolePrintTable(sys.stdout)