Lines Matching refs:time
76 self.time = 0
125 if not self.time:
127 x = (b * Decimal(100)) / self.time
136 def addChild(self, call_path_id, name, dso, count, time, branch_count): argument
142 child_item.time = time
148 child_item.data[3] = str(time)
149 child_item.data[4] = self.timePercent(time)
172 time = 0
178 time += query.value(4) - query.value(3)
181 self.addChild(last_call_path_id, name, dso, count, time, branch_count)
187 total_time += time
189 time = query.value(4) - query.value(3)
191 self.addChild(last_call_path_id, name, dso, count, time, branch_count)
193 total_time += time
200 if total_time > self.time:
201 self.time = total_time
202 if self.time:
204 child_item.data[4] = self.timePercent(child_item.time)