Lines Matching refs:column_headers
1932 self.column_headers = ("pid", "tid", "comm")
1948 return len(self.column_headers)
1951 return self.column_headers[column]
1979 bottom_right = self.createIndex(row, len(self.column_headers) - 1, child)
3685 def __init__(self, glb, sql, column_headers, parent=None): argument
3690 self.column_headers = column_headers
3691 …self.fetcher = SQLFetcher(glb, sql, lambda x, y=len(column_headers): self.SQLTableDataPrep(x, y), …
3730 return len(self.column_headers)
3733 return self.column_headers[column]
3750 column_headers = []
3755 column_headers.append(query.value(1))
3768 column_headers.append(query.value(0))
3774 super(SQLAutoTableModel, self).__init__(glb, sql, column_headers, parent)
4167 …column_headers = ("Command", "PID", "TID", "Symbol", "Object", "Call Time", "Return Time", "Elapse…
4169 super(TopCallsModel, self).__init__(glb, sql, column_headers, parent)