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

  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 324 if (!m_pendingExceptions)
325 m_pendingExceptions = adoptPtr(new Vector<OwnPtr<PendingException> >());
326 m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, callStack)));
334 if (!m_pendingExceptions)
337 for (size_t i = 0; i < m_pendingExceptions->size(); i++) {
338 PendingException* e = m_pendingExceptions->at(i).get();
341 m_pendingExceptions.clear();
ScriptExecutionContext.h 199 OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions;

Completed in 388 milliseconds