Home | History | Annotate | Download | only in tools

Lines Matching refs:from_map

39   def __init__(self, from_map, to_map, reason):
40 self.from_map = from_map
63 def AddTransition(from_map, to_map, reason):
64 from_map = AnnotateExistingMap(from_map)
66 if from_map not in transitions:
67 transitions[from_map] = {}
68 targets = transitions[from_map]
81 (from_map, to_map, targets[to_map].reason))
83 targets[to_map] = Transition(from_map, to_map, reason)
99 from_map = words[3]
101 if from_map not in annotations:
102 print("// warning: unknown from_map %s" % from_map)
103 new_map = AddMap(from_map, "<unknown>")
118 AddTransition(from_map, to_map, reason)