Lines Matching defs:Active
1232 // Active regions which end before the current region need to be popped.
1304 auto Active = Regions.begin();
1307 if (Active->startLoc() != I->startLoc() ||
1308 Active->endLoc() != I->endLoc()) {
1310 ++Active;
1311 if (Active != I)
1312 *Active = *I;
1327 if (I->Kind == Active->Kind)
1328 Active->ExecutionCount += I->ExecutionCount;
1330 return Regions.drop_back(std::distance(++Active, End));