Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/dom/
DScriptExecutionContext.cpp324 if (!m_pendingExceptions) in reportException()
325 m_pendingExceptions = adoptPtr(new Vector<OwnPtr<PendingException> >()); in reportException()
326m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, cal… in reportException()
334 if (!m_pendingExceptions) in reportException()
337 for (size_t i = 0; i < m_pendingExceptions->size(); i++) { in reportException()
338 PendingException* e = m_pendingExceptions->at(i).get(); in reportException()
341 m_pendingExceptions.clear(); in reportException()
DScriptExecutionContext.h199 OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions; variable