Lines Matching full:branches
31 // - "BRF:<number of branches found>"
32 // - "BRH:<number of branches hit>"
82 std::vector<llvm::coverage::CountedRegion> Branches;
90 // Recursively collect branches from nested expansions.
94 append_range(Branches, NestedExBranches);
96 // Add branches from this level of expansion.
101 Branches.push_back(B);
105 return Branches;
117 std::vector<llvm::coverage::CountedRegion> Branches =
120 // Recursively collect branches for all file expansions.
124 // Append Expansion Branches to Source Branches.
125 append_range(Branches, ExBranches);
127 // Sort branches based on line number to ensure branches corresponding to the
129 llvm::sort(Branches, sortLine);
131 auto NextBranch = Branches.begin();
132 auto EndBranch = Branches.end();
134 // Branches with the same source line are enumerated individually