Lines Matching refs:hregion
1259 def __init__(self, data, index, x, y, altx=None, alty=None, hregion=None, vregion=None): argument
1266 self.hregion = hregion
1280 def AddPoint(self, x, y, altx=None, alty=None, hregion=None, vregion=None): argument
1286 self.points.append(GraphDataPoint(self, index, x, y, altx, alty, hregion, vregion))
1319 hregion = self.HRegion(db, thread_id, comm_id, time)
1320 self.AddPoint(time, 1000, None, None, hregion)
1342 hregion = self.HRegion(db, query.value(1), query.value(3), start_time)
1343 self.AddPoint(start_time, 1000, None, None, hregion)
1347 hregion = self.HRegion(db, thread_id, comm_id, time)
1348 self.AddPoint(time, 1000, None, None, hregion)
1373 hregion = self.collection.LookupHRegion(key)
1374 if hregion is None:
1375 hregion = self.NewHRegion(db, key, thread_id, comm_id, time)
1376 self.collection.AddHRegion(key, hregion)
1377 return hregion
1401 def AddHRegion(self, key, hregion): argument
1402 self.hregions[key] = hregion
1451 if not(last is None or last.hregion.pid == 0 or x < self.attrs.subrange.x.lo):
1465 colour = self.attrs.region_attributes[last.hregion.key].colour
1520 hregion = self.data.points[i].hregion
1521 hregions.add(hregion)
1526 hregion_times.append((hregion, time))
1969 hregion = self.child_items[index.row()]
1972 return hregion.pid
1974 return hregion.tid
1976 return hregion.comm
2209 for hregion in hregions:
2210 if hregion.pid == 0 and hregion.tid == 0:
2211 region_attributes[hregion.key] = GraphRegionAttribute(QColor(0, 0, 0))
2213 region_attributes[hregion.key] = GraphRegionAttribute(colours[i])
2294 for hregion, time in hregion_times:
2295 thread_at_time = (hregion.exec_comm_id, hregion.thread_id, time)
2296 …menu_text = "Show Call Tree for {} {}:{} at {}".format(hregion.comm, hregion.pid, hregion.tid, tim…