Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-inspector-impl.cc178 auto contextIt = contextGroupIt->second->find(contextId); in getContext() local
179 if (contextIt == contextGroupIt->second->end()) return nullptr; in getContext()
181 return contextIt->second.get(); in getContext()
198 auto contextIt = m_contexts.find(info.contextGroupId); in contextCreated() local
199 if (contextIt == m_contexts.end()) in contextCreated()
200 contextIt = m_contexts in contextCreated()
205 const auto& contextById = contextIt->second; in contextCreated()
395 for (auto& contextIt : *(it->second)) ids.push_back(contextIt.first); in forEachContext()
401 auto contextIt = it->second->find(contextId); in forEachContext() local
402 if (contextIt != it->second->end()) callback(contextIt->second.get()); in forEachContext()