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