Lines Matching defs:profVec
28 std::vector<std::pair<EcmaOpcode, Value>> profVec;
30 profVec.emplace_back(std::make_pair(it->first, it->second));
33 std::sort(profVec.begin(), profVec.end(),
55 for (auto it = profVec.begin(); it != profVec.end(); it++) {
109 std::vector<std::pair<uint64_t, Name>> profVec;
111 profVec.emplace_back(std::make_pair(it->first, it->second));
113 std::sort(profVec.begin(), profVec.end(),
118 auto itr = profVec.begin();
120 while (itr != profVec.end()) {
122 for (int i = 0; i < printMehodCount_ && itr != profVec.end(); i++) {