Lines Matching refs:it
29 for (auto it = profMap_.begin(); it != profMap_.end(); it++) {
30 profVec.emplace_back(std::make_pair(it->first, it->second));
31 it->second.ResetStat();
55 for (auto it = profVec.begin(); it != profVec.end(); it++) {
56 Value val = it->second;
61 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->first)
94 for (auto it = profMap.begin(); it != profMap.end();) {
95 if (it->second == false) {
96 methods.push_back(it->first);
97 profMap.erase(it++);
99 it++;
110 for (auto it = methodIdToName_.begin(); it != methodIdToName_.end(); it++) {
111 profVec.emplace_back(std::make_pair(it->first, it->second));
129 for (auto it = profMap.begin(); it != profMap.end(); it++) {
130 if (it->first.find("func_main_") != it->first.npos) {
133 LOG_ECMA(ERROR) << "There exists compiled function " << it->first
134 << ", but it has not been jit executed, please "
158 for (auto it = bcRecord.begin(); it != bcRecord.end(); it++) {
159 Record record = it->second;
167 << std::setw(numberRightAdjustment) << it->first
177 auto it = profMap_.find(opcode);
178 if (it != profMap_.end()) {
179 (mode == Mode::TYPED_PATH) ? (it->second.typedPathValue++) : (it->second.slowPathValue++);