Lines Matching refs:it2
554 ReportItemsConstIt it2 = right.reportItems_.begin();
556 // still have it2 ?
557 if (it2 != right.reportItems_.end()) {
558 // find the same item in it2 by same sort key
559 while (it2 != right.reportItems_.end()) {
560 if (MultiLevelSame(*it, *it2)) {
563 if (it->heat > option_.heatLimit_ and it2->heat > option_.heatLimit_) {
564 OutputStdItemHeating(it->heat, it2->heat);
568 it2++;
571 // only print it2 item
572 if (it2->heat > option_.heatLimit_) {
573 OutputStdItemHeating(0.0f, it2->heat);
574 OutputStdContentItem(*it2);
576 it2++;
577 continue; // next it2
581 // no more it2, go on print all the it
590 while (it2 != right.reportItems_.end()) {
591 // if diff still have some item in it2 ,print it
592 OutputStdItemHeating(0, it2->heat);
593 OutputStdContentItem(*it2);
594 it2++;