Lines Matching refs:lineNumber
75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
77 , m_lineNumber(lineNumber)
310 bool ScriptExecutionContext::sanitizeScriptError(String& errorMessage, int& lineNumber, String& sourceURL)
317 lineNumber = 0;
321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
326 m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, callStack)));
331 if (!dispatchErrorEvent(errorMessage, lineNumber, sourceURL))
332 logExceptionToConsole(errorMessage, lineNumber, sourceURL, callStack);
344 bool ScriptExecutionContext::dispatchErrorEvent(const String& errorMessage, int lineNumber, const String& sourceURL)
351 int line = lineNumber;