Searched refs:errorMessage (Results 101 - 114 of 114) sorted by relevance

12345

/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDebuggerModel.js663 * @param {string} errorMessage
665 scriptFailedToParse: function(sourceURL, source, startingLine, errorLine, errorMessage)
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPageClient.h188 virtual BlackBerry::Platform::String getErrorPage(int errorCode, const BlackBerry::Platform::String& errorMessage, const BlackBerry::Platform::String& url) = 0;
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorDebuggerAgent.cpp694 void InspectorDebuggerAgent::failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) argument
696 m_frontend->scriptFailedToParse(url, data, firstLine, errorLine, errorMessage);
H A DInspectorResourceAgent.cpp651 void InspectorResourceAgent::didReceiveWebSocketFrameError(unsigned long identifier, const String& errorMessage) argument
653 m_frontend->webSocketFrameError(IdentifiersFactory::requestId(identifier), currentTime(), errorMessage); local
H A DInspectorInstrumentation.h276 static void didReceiveWebSocketFrameError(Document*, unsigned long identifier, const String& errorMessage);
1894 inline void InspectorInstrumentation::didReceiveWebSocketFrameError(Document* document, unsigned long identifier, const String& errorMessage) argument
1898 didReceiveWebSocketFrameErrorImpl(instrumentingAgents, identifier, errorMessage);
1902 UNUSED_PARAM(errorMessage);
H A DInspectorInstrumentation.cpp1192 void InspectorInstrumentation::didReceiveWebSocketFrameErrorImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier, const String& errorMessage) argument
1195 resourceAgent->didReceiveWebSocketFrameError(identifier, errorMessage);
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A Dtestapi.c1738 JSStringRef errorMessage = 0; local
1740 JSScriptRef scriptObject = JSScriptCreateFromString(contextGroup, url, 1, script, &errorMessage, &errorLine);
1741 ASSERT((!scriptObject) != (!errorMessage));
1744 CFStringRef errorCF = JSStringCopyCFString(kCFAllocatorDefault, errorMessage);
1747 JSStringRelease(errorMessage);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebViewPrivate.h734 - (void)_geolocationDidFailWithMessage:(NSString *)errorMessage;
H A DWebView.mm6663 - (void)_geolocationDidFailWithMessage:(NSString *)errorMessage
6667 RefPtr<GeolocationError> geolocatioError = GeolocationError::create(GeolocationError::PositionUnavailable, errorMessage);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.h607 virtual void disableEval(const String& errorMessage);
1096 virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>);
H A DDocument.cpp2605 void Document::logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack> callStack) argument
2607 addMessage(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber, columnNumber, callStack);
2708 void Document::disableEval(const String& errorMessage) argument
2713 frame()->script()->disableEval(errorMessage);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DStringPrototype.cpp843 return throwVMError(exec, createSyntaxError(exec, regExp->errorMessage()));
894 return throwVMError(exec, createSyntaxError(exec, reg->errorMessage()));
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DContentSecurityPolicy.cpp886 void setEvalDisabledErrorMessage(const String& errorMessage) { m_evalDisabledErrorMessage = errorMessage; } argument
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLMediaElement.cpp1715 static void logMediaLoadRequest(Page* page, const String& mediaEngine, const String& errorMessage, bool succeeded) argument
1723 client->logDiagnosticMessage(DiagnosticLoggingKeys::mediaLoadingFailedKey(), errorMessage, DiagnosticLoggingKeys::failKey()); local

Completed in 300 milliseconds

12345