Lines Matching refs:end
27 def __init__(self, start, end):
29 self.end = int(end)
33 return "{} {} {} ".format(self.start, self.end, self.target_obj_names)
54 start, end, time_stamp, name, cmdhash = line.strip().split(
57 storing_data.setdefault(cmdhash, StoringDataLine(start, end))
63 key=lambda line: line.end - line.start,
71 duration = item.end - item.start
86 'dur': str((storingdataline.end - storingdataline.start) * 1000),
107 self.tids = [] # store the tid's end time
112 self.tids[i] = storingdataline.end
115 # for the end time is newer than all tids so we need a new one
116 self.tids.append(storingdataline.end)