Home
last modified time | relevance | path

Searched refs:contextIt (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/inspector/
Dv8-inspector-impl.cc171 auto contextIt = contextGroupIt->second->find(contextId); in getContext() local
172 if (contextIt == contextGroupIt->second->end()) return nullptr; in getContext()
174 return contextIt->second.get(); in getContext()
203 auto contextIt = m_contexts.find(info.contextGroupId); in contextCreated() local
204 if (contextIt == m_contexts.end()) in contextCreated()
205 contextIt = m_contexts in contextCreated()
210 const auto& contextById = contextIt->second; in contextCreated()
386 for (auto& contextIt : *(it->second)) ids.push_back(contextIt.first); in forEachContext()
392 auto contextIt = it->second->find(contextId); in forEachContext() local
393 if (contextIt != it->second->end()) callback(contextIt->second.get()); in forEachContext()