HomeSort by relevance Sort by last modified time
    Searched refs:m_pendingExceptions (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExecutionContext.cpp 139 if (!m_pendingExceptions)
140 m_pendingExceptions = adoptPtrWillBeNoop(new WillBeHeapVector<OwnPtrWillBeMember<PendingException> >());
141 m_pendingExceptions->append(adoptPtrWillBeNoop(new PendingException(errorEvent->messageForConsole(), errorEvent->lineno(), errorEvent->colno(), scriptId, errorEvent->filename(), callStack)));
149 if (!m_pendingExceptions)
152 for (size_t i = 0; i < m_pendingExceptions->size(); i++) {
153 PendingException* e = m_pendingExceptions->at(i).get();
156 m_pendingExceptions.clear();
270 visitor->trace(m_pendingExceptions);
ExecutionContext.h 166 OwnPtrWillBeMember<WillBeHeapVector<OwnPtrWillBeMember<PendingException> > > m_pendingExceptions;

Completed in 192 milliseconds