/external/chromium_org/third_party/WebKit/Source/core/workers/ |
WorkerReportingProxy.h | 44 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) = 0; 45 virtual void reportConsoleMessage(MessageSource, MessageLevel, const String& message, int lineNumber, const String& sourceURL) = 0;
|
WorkerObjectProxy.h | 61 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE; 62 virtual void reportConsoleMessage(MessageSource, MessageLevel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE;
|
WorkerConsole.cpp | 55 m_scope->thread()->workerReportingProxy().reportConsoleMessage(ConsoleAPIMessageSource, level, message, lastCaller.lineNumber(), lastCaller.sourceURL());
|
WorkerObjectProxy.cpp | 62 void WorkerObjectProxy::reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) 64 m_executionContext->postTask(bind(&WorkerMessagingProxy::reportException, m_messagingProxy, errorMessage.isolatedCopy(), lineNumber, columnNumber, sourceURL.isolatedCopy())); 67 void WorkerObjectProxy::reportConsoleMessage(MessageSource source, MessageLevel level, const String& message, int lineNumber, const String& sourceURL) 69 m_executionContext->postTask(bind(&WorkerMessagingProxy::reportConsoleMessage, m_messagingProxy, source, level, message.isolatedCopy(), lineNumber, sourceURL.isolatedCopy()));
|
SharedWorkerGlobalScope.cpp | 82 void SharedWorkerGlobalScope::logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack> callStack) 84 WorkerGlobalScope::logExceptionToConsole(errorMessage, sourceURL, lineNumber, columnNumber, callStack); 85 addMessageToWorkerConsole(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber, callStack, 0);
|
SharedWorkerGlobalScope.h | 62 virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) OVERRIDE;
|
WorkerMessagingProxy.h | 67 void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL); 68 void reportConsoleMessage(MessageSource, MessageLevel, const String& message, int lineNumber, const String& sourceURL);
|
WorkerGlobalScope.cpp | 240 void WorkerGlobalScope::logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) 242 thread()->workerReportingProxy().reportException(errorMessage, lineNumber, columnNumber, sourceURL); 250 void WorkerGlobalScope::addMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState* state) 256 thread()->workerReportingProxy().reportConsoleMessage(source, level, message, lineNumber, sourceURL); 257 addMessageToWorkerConsole(source, level, message, sourceURL, lineNumber, 0, state); 260 void WorkerGlobalScope::addMessageToWorkerConsole(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, PassRefPtr<ScriptCallStack> callStack, ScriptState* state) 266 InspectorInstrumentation::addMessageToConsole(this, source, LogMessageType, level, message, sourceURL, lineNumber, 0, state);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
Navigator.cpp | 67 const String* sourceURL = frame->script().sourceURL(); 68 if (!sourceURL) 70 if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js") || sourceURL->endsWith("/tdqm_loader.js")))
|
Console.cpp | 73 if (m_frame->page()->chrome().client().shouldReportDetailedMessageForSource(callStack->at(0).sourceURL())) { 77 m_frame->page()->chrome().client().addMessageToConsole(ConsoleAPIMessageSource, level, message, callStack->at(0).lineNumber(), callStack->at(0).sourceURL(), stackTrace);
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WebSocketChannel.cpp | 57 String sourceURL; 61 sourceURL = callStack->at(0).sourceURL(); 70 return WorkerThreadableWebSocketChannel::create(workerGlobalScope, client, mode, sourceURL, lineNumber); 77 return MainThreadWebSocketChannel::create(document, client, sourceURL, lineNumber); 79 return MainThreadWebSocketChannel::create(document, client, sourceURL, lineNumber);
|
WorkerThreadableWebSocketChannel.h | 60 static PassRefPtr<WebSocketChannel> create(WorkerGlobalScope* workerGlobalScope, WebSocketChannelClient* client, const String& taskMode, const String& sourceURL, unsigned lineNumber) 62 return adoptRef(new WorkerThreadableWebSocketChannel(workerGlobalScope, client, taskMode, sourceURL, lineNumber)); 99 void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber); 114 Peer(PassRefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ExecutionContext*, const String& taskMode, const String& sourceURL, unsigned lineNumber); 148 void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber); 162 // sourceURL and lineNumber provides the source filename and 165 static void mainThreadInitialize(ExecutionContext*, WorkerLoaderProxy*, PassRefPtr<ThreadableWebSocketChannelClientWrapper>, const String& taskMode, const String& sourceURL, unsigned lineNumber); 180 WorkerThreadableWebSocketChannel(WorkerGlobalScope*, WebSocketChannelClient*, const String& taskMode, const String& sourceURL, unsigned lineNumber); 188 static void mainThreadFail(ExecutionContext*, Peer*, const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber);
|
WorkerThreadableWebSocketChannel.cpp | 53 WorkerThreadableWebSocketChannel::WorkerThreadableWebSocketChannel(WorkerGlobalScope* context, WebSocketChannelClient* client, const String& taskMode, const String& sourceURL, unsigned lineNumber) 57 , m_sourceURLAtConnection(sourceURL) 60 m_bridge->initialize(sourceURL, lineNumber); 121 void WorkerThreadableWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) 131 m_bridge->fail(reason, level, callStack->at(0).sourceURL(), callStack->at(0).lineNumber()); 132 } else if (sourceURL.isEmpty() && !lineNumber) { 138 m_bridge->fail(reason, level, sourceURL, lineNumber); 162 WorkerThreadableWebSocketChannel::Peer::Peer(PassRefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ExecutionContext* context, const String& taskMode, const String& sourceURL, unsigned lineNumber) 172 m_mainWebSocketChannel = MainThreadWebSocketChannel::create(document, this, sourceURL, lineNumber); 174 m_mainWebSocketChannel = MainThreadWebSocketChannel::create(document, this, sourceURL, lineNumber) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8LazyEventListener.h | 51 static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) 53 return adoptRef(new V8LazyEventListener(functionName, eventParameterName, code, sourceURL, position, node, isolate)); 62 V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*, v8::Isolate*);
|
WorkerScriptController.cpp | 178 V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, sourceURL, message->GetScriptResourceName(), ScriptValue()); 179 state->sourceURL = sourceURL; 200 *errorEvent = m_workerGlobalScope.shouldSanitizeScriptError(state.sourceURL, NotSharableCrossOrigin) ? 201 ErrorEvent::createSanitizedError(0) : ErrorEvent::create(state.errorMessage, state.sourceURL, state.lineNumber, state.columnNumber, 0); 204 ASSERT(!m_workerGlobalScope.shouldSanitizeScriptError(state.sourceURL, NotSharableCrossOrigin)); 205 RefPtr<ErrorEvent> event = m_errorEventFromImportedScript ? m_errorEventFromImportedScript.release() : ErrorEvent::create(state.errorMessage, state.sourceURL, state.lineNumber, state.columnNumber, 0);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ExecutionContextClient.h | 63 virtual void addMessage(MessageSource, MessageLevel, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState*) = 0; 66 virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) = 0; 73 void addConsoleMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber) { addMessage(source, level, message, sourceURL, lineNumber, 0); }
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Script.js | 31 * @param {string} sourceURL 40 WebInspector.Script = function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL) 43 this.sourceURL = sourceURL; 69 return this.sourceURL; 176 return !!this.sourceURL && !startsAtZero; 184 return !this.sourceURL; 192 return !!this.sourceURL && this.sourceURL.startsWith(WebInspector.Script.snippetSourceURLPrefix);
|
CompilerScriptMapping.js | 125 var sourceURL = sourceURLs[i]; 126 if (this._sourceMapForURL.get(sourceURL)) 128 this._sourceMapForURL.put(sourceURL, sourceMap); 129 if (!this._workspace.hasMappingForURL(sourceURL) && !this._workspace.uiSourceCodeForURL(sourceURL)) { 130 var contentProvider = sourceMap.sourceContentProvider(sourceURL, WebInspector.resourceTypes.Script); 131 this._networkWorkspaceProvider.addFileForURL(sourceURL, contentProvider, true); 133 var uiSourceCode = this._workspace.uiSourceCodeForURL(sourceURL); 138 WebInspector.showErrorMessage(WebInspector.UIString("Failed to locate workspace file mapped to URL %s from source map %s", sourceURL, sourceMap.url())); 178 // script.sourceURL can be a random string, but is generally an absolute path -> complete it to inspected page url fo [all...] |
SourceMap.js | 119 * @param {string} sourceURL 122 sourceContent: function(sourceURL) 124 return this._sourceContentByURL[sourceURL]; 128 * @param {string} sourceURL 132 sourceContentProvider: function(sourceURL, contentType) 134 var sourceContent = this.sourceContent(sourceURL); 137 return new WebInspector.CompilerSourceMappingContentProvider(sourceURL, contentType); 189 * @param {string} sourceURL of the originating resource 193 findEntryReversed: function(sourceURL, lineNumber) 195 var mappings = this._reverseMappingsBySourceURL[sourceURL]; [all...] |
NetworkUISourceCodeProvider.js | 74 if (!script.sourceURL || script.isInlineScript() || script.isSnippet()) 78 var parsedURL = new WebInspector.ParsedURL(script.sourceURL); 82 this._addFile(script.sourceURL, script, script.isContentScript);
|
PresentationConsoleMessageHelper.js | 98 var messages = this._pendingConsoleMessages[script.sourceURL]; 113 this._pendingConsoleMessages[script.sourceURL] = pendingMessages; 115 delete this._pendingConsoleMessages[script.sourceURL];
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ServiceWorkerGlobalScopeProxy.h | 69 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE; 70 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLevel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE;
|
ServiceWorkerGlobalScopeProxy.cpp | 54 void ServiceWorkerGlobalScopeProxy::reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) 59 void ServiceWorkerGlobalScopeProxy::reportConsoleMessage(MessageSource, MessageLevel, const String& message, int lineNumber, const String& sourceURL)
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
ScriptCallFrame.h | 47 const String& sourceURL() const { return m_scriptName; }
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PageConsole.h | 47 void addMessage(MessageSource, MessageLevel, const String& message, const String& sourceURL, unsigned lineNumber, unsigned columnNumber = 0, PassRefPtr<ScriptCallStack> = 0, ScriptState* = 0, unsigned long requestIdentifier = 0);
|