Home | History | Annotate | Download | only in coverage

Lines Matching refs:arc

51         """Resolves the block and arc counts.
64 for arc in block.exit_arcs:
65 if not arc.resolved:
66 unresolved_arcs.append(arc)
70 # Resolve the arc counts
77 arc = unresolved_arcs[index]
78 if arc.Resolve():
79 unresolved_arcs.remove(arc)
86 block.count = sum(arc.count for arc in block.entry_arcs)
88 block.count = sum(arc.count for arc in block.exit_arcs)