Lines Matching full:it
28 for (auto it = profMap_.begin(); it != profMap_.end(); it++) { in PrintAndReset() local
29 profVec.emplace_back(std::make_pair(it->first, it->second)); in PrintAndReset()
30 it->second.ResetStat(); in PrintAndReset()
54 for (auto it = profVec.begin(); it != profVec.end(); it++) { in PrintAndReset() local
55 Value val = it->second; in PrintAndReset()
60 …G_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->first) in PrintAndReset()
93 for (auto it = profMap.begin(); it != profMap.end();) { in FilterMethodToPrint() local
94 if (it->second == false) { in FilterMethodToPrint()
95 methods.push_back(it->first); in FilterMethodToPrint()
96 profMap.erase(it++); in FilterMethodToPrint()
98 it++; in FilterMethodToPrint()
109 for (auto it = methodIdToName_.begin(); it != methodIdToName_.end(); it++) { in FilterMethodToPrint() local
110 profVec.emplace_back(std::make_pair(it->first, it->second)); in FilterMethodToPrint()
128 for (auto it = profMap.begin(); it != profMap.end(); it++) { in FilterMethodToPrint() local
129 if (it->first.find("func_main_") != it->first.npos) { in FilterMethodToPrint()
132 LOG_ECMA(ERROR) << "There exists compiled function " << it->first in FilterMethodToPrint()
133 << ", but it has not been jit executed, please " in FilterMethodToPrint()
157 for (auto it = bcRecord.begin(); it != bcRecord.end(); it++) { in FilterMethodToPrint() local
158 Record record = it->second; in FilterMethodToPrint()
166 << std::setw(numberRightAdjustment) << it->first in FilterMethodToPrint()
177 auto it = profMap_.find(opcode); in FilterMethodToPrint() local
178 if (it != profMap_.end()) { in FilterMethodToPrint()
179 (mode == Mode::TYPED_PATH) ? (it->second.typedPathValue++) : (it->second.slowPathValue++); in FilterMethodToPrint()