Lines Matching refs:Gap

188   void setGap(bool Gap) { GapRegion = Gap; }  in setGap()  argument
1457 auto Gap = findGapAreaBetween(getEnd(LastStmt), getStart(Child)); in VisitStmt() local
1458 if (Gap) in VisitStmt()
1459 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), in VisitStmt()
1599 auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->getBody())); in VisitWhileStmt() local
1600 if (Gap) in VisitWhileStmt()
1601 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitWhileStmt()
1719 auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->getBody())); in VisitForStmt() local
1720 if (Gap) in VisitForStmt()
1721 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitForStmt()
1762 auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->getBody())); in VisitCXXForRangeStmt() local
1763 if (Gap) in VisitCXXForRangeStmt()
1764 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitCXXForRangeStmt()
1801 auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->getBody())); in VisitObjCForCollectionStmt() local
1802 if (Gap) in VisitObjCForCollectionStmt()
1803 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitObjCForCollectionStmt()
2028 std::optional<SourceRange> Gap = in VisitIfStmt() local
2030 if (Gap) in VisitIfStmt()
2031 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), ThenCount); in VisitIfStmt()
2046 std::optional<SourceRange> Gap = in VisitIfStmt() local
2048 if (Gap) in VisitIfStmt()
2049 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), ElseCount); in VisitIfStmt()
2109 auto Gap = in VisitAbstractConditionalOperator() local
2111 if (Gap) in VisitAbstractConditionalOperator()
2112 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), TrueCount); in VisitAbstractConditionalOperator()