Lines Matching full:gap

126   /// Whether this region is a gap region. The count from a gap region is set
188 void setGap(bool Gap) { GapRegion = Gap; } in setGap() argument
913 /// Gap region counter after terminate statement.
1286 /// Find a valid gap range between \p AfterLoc and \p BeforeLoc.
1290 // have valid source locations. Do not emit a gap region if this is the case in findGapAreaBetween()
1329 // If the start and end locations of the gap are both within the same macro in findGapAreaBetween()
1339 /// Emit a gap region between \p StartLoc and \p EndLoc with the given count.
1386 // If the start and end locations of the gap are both within the same macro in findAreaStartingFromTo()
1454 // If last statement contains terminate statements, add a gap area in VisitStmt()
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()
2367 OS << "Gap,"; in dump()