Home | History | Annotate | Download | only in coverage

Lines Matching refs:block

22         blocks: list of BlockSummary objects for each block in the function.
34 first line number in the object attributes. Initializes the block
51 """Resolves the block and arc counts.
54 counts are resolved in the unresolved arcs. Then, block
56 the block.
63 for block in self.blocks:
64 for arc in block.exit_arcs:
83 # Resolve the block counts
84 for block in self.blocks:
85 if len(block.entry_arcs):
86 block.count = sum(arc.count for arc in block.entry_arcs)
88 block.count = sum(arc.count for arc in block.exit_arcs)