Home | History | Annotate | Download | only in inspector

Lines Matching refs:m_startedProfiles

166   m_startedProfiles.push_back(ProfileDescriptor(id, title));
178 if (m_startedProfiles.empty()) return;
179 id = m_startedProfiles.back().m_id;
180 resolvedTitle = m_startedProfiles.back().m_title;
181 m_startedProfiles.pop_back();
183 for (size_t i = 0; i < m_startedProfiles.size(); i++) {
184 if (m_startedProfiles[i].m_title == title) {
186 id = m_startedProfiles[i].m_id;
187 m_startedProfiles.erase(m_startedProfiles.begin() + i);
211 for (size_t i = m_startedProfiles.size(); i > 0; --i)
212 stopProfiling(m_startedProfiles[i - 1].m_id, false);
213 m_startedProfiles.clear();