Lines Matching refs:self
11 def __init__(self, transitions, type_indices, ttis, abbrs):
12 self.transitions = transitions
13 self.type_indices = type_indices
14 self.ttis = ttis
15 self.abbrs = abbrs
39 self = cls(transitions, type_indices, ttis, abbrs)
40 self.tzh = tzh
42 return self
44 def dump(self, stream, start=None, end=None):
45 for j, (trans, i) in enumerate(zip(self.transitions, self.type_indices)):
47 tti = self.ttis[i]
50 abbr = self.abbrs[abbrind:self.abbrs.find(0, abbrind)].decode()
52 prev_tti = self.ttis[self.type_indices[j - 1]]