Lines Matching refs:hstatus
1177 if (item.hstatus)
1178 _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
1197 if (item.hstatus)
1198 htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus, item.hcomment);
1225 _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
1240 var htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus ? item.hstatus : '?', item.hcomment);
1262 if (!item.hstatus)
1281 if (!item.hstatus)
1308 if (item.hstatus == status)
1309 _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
1327 if (item.hstatus == status)
1328 htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus, item.hcomment);
1354 _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
1370 var htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus ? item.hstatus : '?', item.hcomment);
1414 _self.markTestCompleted(item.test, item.hstatus, item.xstatus);
1525 // hstatus: HTML4 result
1528 tx.executeSql('CREATE TABLE tests (test PRIMARY KEY UNIQUE, ref, title, flags, links, assertion, hstatus, hcomment, xstatus, xcomment)', null,
1547 tx.executeSql('UPDATE tests SET hstatus=?, hcomment=? WHERE test=?\n', [result, comment, test], null, errorHandler);
1565 query = 'UPDATE tests SET hstatus=?, hcomment=? WHERE test=?\n';
1585 tx.executeSql('UPDATE tests SET hstatus=NULL, hcomment=NULL WHERE test=?\n', [currResult.id], null, errorHandler);
1716 tx.executeSql('SELECT * FROM tests WHERE hstatus=? OR xstatus=?', [status, status], function(tx, results) {
1736 tx.executeSql('SELECT * FROM tests WHERE hstatus IS NOT NULL AND xstatus IS NOT NULL AND hstatus <> xstatus', [], function(tx, results) {
1758 tx.executeSql('SELECT * FROM tests WHERE hstatus IS NOT NULL OR xstatus IS NOT NULL', [], function(tx, results) {
1778 tx.executeSql('SELECT * FROM tests WHERE hstatus IS NULL OR xstatus IS NULL', [], function(tx, results) {
1871 var html4RowsCount = 'COUNT(hstatus)';
1874 tx.executeSql('SELECT COUNT(*), COUNT(hstatus), COUNT(xstatus) FROM tests', [], function(tx, results) {
1889 _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'pass', 'h-passed');
1892 _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'fail', 'h-failed');
1895 _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'skipped', 'h-skipped');
1898 _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'invalid', 'h-invalid');