Lines Matching refs:row

252 	def index(self, row, column, parent):  argument
253 child_item = self.Item(parent).getChildItem(row)
254 return self.createIndex(row, column, child_item)
259 def FetchIfNeeded(self, row): argument
260 if row > self.last_row_read:
261 self.last_row_read = row
262 if row + 10 >= self.root.child_count:
309 def index(self, row, column, parent): argument
310 return self.createIndex(row, column, self.child_items[row])
315 def FetchIfNeeded(self, row): argument
316 if row > self.last_row_read:
317 self.last_row_read = row
318 if row + 10 >= self.child_count:
487 def __init__(self, glb, params, row, parent_item): argument
490 self.row = row
500 def getChildItem(self, row): argument
501 return self.child_items[row]
507 return self.row
528 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br… argument
529 super(CallGraphLevelTwoPlusItemBase, self).__init__(glb, params, row, parent_item)
572 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, name, dso, count, time, ins… argument
573 …super(CallGraphLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, call_path_id, …
589 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item): argument
590 …super(CallGraphLevelTwoItem, self).__init__(glb, params, row, comm_id, thread_id, 1, 0, 0, 0, 0, p…
617 def __init__(self, glb, params, row, comm_id, comm, parent_item): argument
618 super(CallGraphLevelOneItem, self).__init__(glb, params, row, parent_item)
808 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, call_time, time, insn_cnt, cyc_… argument
809 super(CallTreeLevelTwoPlusItemBase, self).__init__(glb, params, row, parent_item)
854 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, name, dso, call_time, time, ins… argument
855 …super(CallTreeLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, calls_id, call_…
871 def __init__(self, glb, params, row, comm_id, thread_id, pid, tid, parent_item): argument
872 …super(CallTreeLevelTwoItem, self).__init__(glb, params, row, comm_id, thread_id, 0, 0, 0, 0, 0, 0,…
899 def __init__(self, glb, params, row, comm_id, comm, parent_item): argument
900 super(CallTreeLevelOneItem, self).__init__(glb, params, row, parent_item)
1058 for row in xrange(n):
1059 child = self.model.index(row, 0, parent)
1136 for row in xrange(n):
1137 child = self.model.index(row, 0, parent)
1152 for row in xrange(n):
1154 child = self.model.index(row, 0, parent)
1944 def index(self, row, column, parent): argument
1945 return self.createIndex(row, column, self.child_items[row])
1955 child = self.child_items[index.row()]
1960 child = self.child_items[index.row()]
1966 hregion = self.child_items[index.row()]
1976 def SetHighlight(self, row, set_highlight): argument
1977 child = self.child_items[row]
1978 top_left = self.createIndex(row, 0, child)
1979 bottom_right = self.createIndex(row, len(self.column_headers) - 1, child)
1983 for row in xrange(self.child_count):
1984 child = self.child_items[row]
1987 self.SetHighlight(row, False)
1989 self.SetHighlight(row, True)
2486 self.rows.append(child.row)
2492 self.rows.append(child.row)
2505 row = self.FindValue()
2515 row = self.rows[self.pos]
2517 row = -1
2518 return (True, row)
2524 …thread.done.connect(lambda row, t=thread, c=callback: self.FindDone(t, c, row), Qt.QueuedConnectio…
2527 def FindDone(self, thread, callback, row): argument
2528 callback(row)
2859 def __init__(self, row, col, text, parent_item): argument
2860 self.row = row
2870 return self.row
2885 def __init__(self, glb, row, data, parent_item): argument
2887 self.row = row
2897 def getChildItem(self, row): argument
2898 return self.child_items[row]
2904 return self.row
3009 def getChildItem(self, row): argument
3010 return self.child_items[row]
3160 self.FetchIfNeeded(item.row)
3245 for row in xrange(n):
3246 val = self.model.root.child_items[row].data[column]
3274 def FindDone(self, row): argument
3276 if row >= 0:
3277 self.view.setCurrentIndex(self.model.index(row, 0, QModelIndex()))
3573 for row in xrange(len(self.data_items)):
3574 self.grid.addWidget(QLabel(self.data_items[row].label), row, 0)
3575 self.grid.addWidget(self.data_items[row].widget, row, 1)
3672 def __init__(self, row, data): argument
3673 self.row = row
3696 self.FetchIfNeeded(item.row)
3808 for row in xrange(n):
3809 val = self.data_model.child_items[row].data[column]
3846 return a.row() * glb_max_cols + a.column()
3857 min_row = indexes[0].row()
3858 max_row = indexes[0].row()
3862 min_row = min(min_row, i.row())
3863 max_row = max(max_row, i.row())
3897 if i.row() > last_row:
3898 last_row = i.row()
3954 row = pos.row()
3956 i = pos.sibling(row, c)
3992 row = pos.row()
3994 i = pos.sibling(row, c)
4108 def FindDone(self, row): argument
4110 if row >= 0:
4111 self.view.setCurrentIndex(self.model.mapFromSource(self.data_model.index(row, 0, QModelIndex())))
4228 def FindDone(self, row): argument
4230 if row >= 0:
4231 self.view.setCurrentIndex(self.model.index(row, 0, QModelIndex()))