Lines Matching refs:contextId

258   int contextId = m_contextId;
259 if (!m_arguments.size() || !contextId) return nullptr;
261 inspector->getContext(contextGroupId, contextId);
289 inspectedContext = inspector->getContext(contextGroupId, contextId);
301 inspectedContext = inspector->getContext(contextGroupId, contextId);
429 v8::Local<v8::Context> v8Context, int contextId, int groupId,
446 message->m_contextId = contextId;
491 v8::Isolate* isolate, const String16& message, int contextId,
499 if (contextId && !exception.IsEmpty()) {
500 consoleMessage->m_contextId = contextId;
520 void V8ConsoleMessage::contextDestroyed(int contextId) {
521 if (contextId != m_contextId) return;
600 int contextId, const String16& method) {
602 m_data[contextId].m_reportedDeprecationMessages;
609 int V8ConsoleMessageStorage::count(int contextId, const String16& id) {
610 return ++m_data[contextId].m_count[id];
613 void V8ConsoleMessageStorage::time(int contextId, const String16& id) {
614 m_data[contextId].m_time[id] = m_inspector->client()->currentTimeMS();
617 bool V8ConsoleMessageStorage::countReset(int contextId, const String16& id) {
618 std::map<String16, int>& count_map = m_data[contextId].m_count;
625 double V8ConsoleMessageStorage::timeLog(int contextId, const String16& id) {
626 std::map<String16, double>& time = m_data[contextId].m_time;
632 double V8ConsoleMessageStorage::timeEnd(int contextId, const String16& id) {
633 std::map<String16, double>& time = m_data[contextId].m_time;
641 bool V8ConsoleMessageStorage::hasTimer(int contextId, const String16& id) {
642 const std::map<String16, double>& time = m_data[contextId].m_time;
646 void V8ConsoleMessageStorage::contextDestroyed(int contextId) {
649 m_messages[i]->contextDestroyed(contextId);
652 auto it = m_data.find(contextId);
653 if (it != m_data.end()) m_data.erase(contextId);