Lines Matching refs:column_headers
1935 self.column_headers = ("pid", "tid", "comm")
1951 return len(self.column_headers)
1954 return self.column_headers[column]
1982 bottom_right = self.createIndex(row, len(self.column_headers) - 1, child)
3688 def __init__(self, glb, sql, column_headers, parent=None): argument
3693 self.column_headers = column_headers
3694 …self.fetcher = SQLFetcher(glb, sql, lambda x, y=len(column_headers): self.SQLTableDataPrep(x, y), …
3733 return len(self.column_headers)
3736 return self.column_headers[column]
3753 column_headers = []
3758 column_headers.append(query.value(1))
3771 column_headers.append(query.value(0))
3777 super(SQLAutoTableModel, self).__init__(glb, sql, column_headers, parent)
4170 …column_headers = ("Command", "PID", "TID", "Symbol", "Object", "Call Time", "Return Time", "Elapse…
4172 super(TopCallsModel, self).__init__(glb, sql, column_headers, parent)