Lines Matching refs:BodyCount

1577     Counter BodyCount = llvm::EnableSingleByteCoverage  in VisitWhileStmt()  local
1584 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitWhileStmt()
1601 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitWhileStmt()
1607 subtractCounters(CondCount, BodyCount)); in VisitWhileStmt()
1618 createBranchRegion(S->getCond(), BodyCount, in VisitWhileStmt()
1619 subtractCounters(CondCount, BodyCount)); in VisitWhileStmt()
1626 Counter BodyCount = llvm::EnableSingleByteCoverage in VisitDoStmt() local
1635 propagateCounts(BodyCount, S->getBody()); in VisitDoStmt()
1638 propagateCounts(addCounters(ParentCount, BodyCount), S->getBody()); in VisitDoStmt()
1654 subtractCounters(CondCount, BodyCount)); in VisitDoStmt()
1662 createBranchRegion(S->getCond(), BodyCount, in VisitDoStmt()
1663 subtractCounters(CondCount, BodyCount)); in VisitDoStmt()
1675 Counter BodyCount = llvm::EnableSingleByteCoverage in VisitForStmt() local
1686 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitForStmt()
1721 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitForStmt()
1727 subtractCounters(CondCount, BodyCount)); in VisitForStmt()
1737 createBranchRegion(S->getCond(), BodyCount, in VisitForStmt()
1738 subtractCounters(CondCount, BodyCount)); in VisitForStmt()
1749 Counter BodyCount = llvm::EnableSingleByteCoverage in VisitCXXForRangeStmt() local
1755 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitCXXForRangeStmt()
1764 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitCXXForRangeStmt()
1773 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); in VisitCXXForRangeStmt()
1784 createBranchRegion(S->getCond(), BodyCount, in VisitCXXForRangeStmt()
1785 subtractCounters(LoopCount, BodyCount)); in VisitCXXForRangeStmt()
1793 Counter BodyCount = getRegionCounter(S); in VisitObjCForCollectionStmt() local
1797 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitObjCForCollectionStmt()
1803 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitObjCForCollectionStmt()
1808 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); in VisitObjCForCollectionStmt()