Lines Matching refs:time
77 self.time = 0
126 if not self.time:
128 x = (b * Decimal(100)) / self.time
137 def addChild(self, call_path_id, name, dso, count, time, branch_count): argument
143 child_item.time = time
149 child_item.data[3] = str(time)
150 child_item.data[4] = self.timePercent(time)
173 time = 0
179 time += query.value(4) - query.value(3)
182 self.addChild(last_call_path_id, name, dso, count, time, branch_count)
188 total_time += time
190 time = query.value(4) - query.value(3)
192 self.addChild(last_call_path_id, name, dso, count, time, branch_count)
194 total_time += time
201 if total_time > self.time:
202 self.time = total_time
203 if self.time:
205 child_item.data[4] = self.timePercent(child_item.time)