Lines Matching defs:Active
1204 // Active regions which end before the current region need to be popped.
1276 auto Active = Regions.begin();
1279 if (Active->startLoc() != I->startLoc() ||
1280 Active->endLoc() != I->endLoc()) {
1282 ++Active;
1283 if (Active != I)
1284 *Active = *I;
1299 if (I->Kind == Active->Kind) {
1300 assert(I->HasSingleByteCoverage == Active->HasSingleByteCoverage &&
1303 Active->ExecutionCount = Active->ExecutionCount || I->ExecutionCount;
1305 Active->ExecutionCount += I->ExecutionCount;
1308 return Regions.drop_back(std::distance(++Active, End));