Lines Matching refs:Else
1923 const auto *Else = S->getElse(); in coverIfConsteval() local
1937 if (Else) { in coverIfConsteval()
1939 markSkipped(getEnd(Then), getEnd(Else)); in coverIfConsteval()
1944 markSkipped(S->getIfLoc(), Else ? getStart(Else) : getEnd(Then)); in coverIfConsteval()
1946 if (Else) in coverIfConsteval()
1947 propagateCounts(ParentCount, Else); in coverIfConsteval()
1983 const auto *Else = S->getElse(); in coverIfConstexpr() local
1990 if (Else) in coverIfConstexpr()
1992 markSkipped(getEnd(Then), getEnd(Else)); in coverIfConstexpr()
1995 markSkipped(startOfSkipped, Else ? getStart(Else) : getEnd(Then)); in coverIfConstexpr()
1997 if (Else) in coverIfConstexpr()
1998 propagateCounts(ParentCount, Else); in coverIfConstexpr()
2042 if (const Stmt *Else = S->getElse()) { in VisitIfStmt() local
2047 findGapAreaBetween(getEnd(S->getThen()), getStart(Else)); in VisitIfStmt()
2050 extendRegion(Else); in VisitIfStmt()
2052 Counter ElseOutCount = propagateCounts(ElseCount, Else); in VisitIfStmt()