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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptExecutionContext.cpp 206 if (!m_pendingExceptions)
207 m_pendingExceptions = adoptPtr(new Vector<OwnPtr<PendingException> >());
208 m_pendingExceptions->append(adoptPtr(new PendingException(errorEvent->message(), errorEvent->lineno(), errorEvent->colno(), errorEvent->filename(), callStack)));
216 if (!m_pendingExceptions)
219 for (size_t i = 0; i < m_pendingExceptions->size(); i++) {
220 PendingException* e = m_pendingExceptions->at(i).get();
223 m_pendingExceptions.clear();
ScriptExecutionContext.h 185 OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions;

Completed in 61 milliseconds