Lines Matching full:it
29 for (auto it = profMap_.begin(); it != profMap_.end(); it++) { in PrintAndReset() local
30 profVec.emplace_back(std::make_pair(it->first, it->second)); in PrintAndReset()
31 it->second.ResetStat(); in PrintAndReset()
55 for (auto it = profVec.begin(); it != profVec.end(); it++) { in PrintAndReset() local
56 Value val = it->second; in PrintAndReset()
61 …G_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->first) in PrintAndReset()
94 for (auto it = profMap.begin(); it != profMap.end();) { in FilterMethodToPrint() local
95 if (it->second == false) { in FilterMethodToPrint()
96 methods.push_back(it->first); in FilterMethodToPrint()
97 profMap.erase(it++); in FilterMethodToPrint()
99 it++; in FilterMethodToPrint()
110 for (auto it = methodIdToName_.begin(); it != methodIdToName_.end(); it++) { in FilterMethodToPrint() local
111 profVec.emplace_back(std::make_pair(it->first, it->second)); in FilterMethodToPrint()
129 for (auto it = profMap.begin(); it != profMap.end(); it++) { in FilterMethodToPrint() local
130 if (it->first.find("func_main_") != it->first.npos) { in FilterMethodToPrint()
133 LOG_ECMA(ERROR) << "There exists compiled function " << it->first in FilterMethodToPrint()
134 << ", but it has not been jit executed, please " in FilterMethodToPrint()
158 for (auto it = bcRecord.begin(); it != bcRecord.end(); it++) { in FilterMethodToPrint() local
159 Record record = it->second; in FilterMethodToPrint()
167 << 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()