Searched defs:sourceURL (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallFrame.h46 const String& sourceURL() const { return m_scriptName; } function in class:WebCore::ScriptCallFrame
H A DPageDebuggerAgent.cpp111 void PageDebuggerAgent::addConsoleMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL) argument
113 m_pageAgent->page()->console()->addMessage(source, level, message, sourceURL, 0);
H A DWorkerDebuggerAgent.cpp145 void WorkerDebuggerAgent::addConsoleMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL) argument
148 context->addConsoleMessage(source, level, message, sourceURL, 0);
H A DInspectorProfilerAgent.cpp80 void InspectorProfilerAgent::addProfile(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, const String& sourceURL) argument
86 addProfileFinishedMessageToConsole(profile, lineNumber, sourceURL);
92 addProfile(prpProfile, lastCaller.lineNumber(), lastCaller.sourceURL());
95 void InspectorProfilerAgent::addProfileFinishedMessageToConsole(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, const String& sourceURL) argument
101 m_consoleAgent->addMessageToConsole(ConsoleAPIMessageSource, ProfileEndMessageType, DebugMessageLevel, message, sourceURL, lineNumber);
104 void InspectorProfilerAgent::addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL) argument
108 m_consoleAgent->addMessageToConsole(ConsoleAPIMessageSource, ProfileMessageType, DebugMessageLevel, title, sourceURL, lineNumber);
H A DInspectorCSSAgent.cpp1244 PassRefPtr<TypeBuilder::CSS::CSSMedia> InspectorCSSAgent::buildMediaObject(const MediaList* media, MediaListSource mediaListSource, const String& sourceURL, CSSStyleSheet* parentStyleSheet) argument
1271 if (!sourceURL.isEmpty()) {
1272 mediaObject->setSourceURL(sourceURL);
1293 String sourceURL; local
1311 sourceURL = parentStyleSheet->contents()->baseURL();
1312 if (sourceURL.isEmpty())
1313 sourceURL = InspectorDOMAgent::documentURLString(parentStyleSheet->ownerDocument());
1315 sourceURL = "";
1319 mediaArray->addItem(buildMediaObject(mediaList, isMediaRule ? MediaListSourceMediaRule : MediaListSourceImportRule, sourceURL, parentStyleSheet));
1332 sourceURL
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DNavigator.cpp55 const String* sourceURL = frame->script()->sourceURL(); local
56 if (!sourceURL)
58 if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js") || sourceURL->endsWith("/tdqm_loader.js")))
/external/chromium_org/third_party/WebKit/public/web/
H A DWebSharedWorkerClient.h57 const WebString& sourceURL) = 0;
64 const WebString& message, int lineNumber, const WebString& sourceURL) = 0;
66 const WebString& message, int lineNumber, const WebString& sourceURL)
69 message, lineNumber, sourceURL);
73 const WebString& message, int lineNumber, const WebString& sourceURL)
76 message, lineNumber, sourceURL);
65 postConsoleMessageToWorkerObject(int sourceIdentifier, int, int messageLevel, const WebString& message, int lineNumber, const WebString& sourceURL) argument
72 postConsoleMessageToWorkerObject(int sourceIdentifier, int messageLevel, const WebString& message, int lineNumber, const WebString& sourceURL) argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8LazyEventListener.h51 static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node) argument
53 return adoptRef(new V8LazyEventListener(functionName, eventParameterName, code, sourceURL, position, node));
62 V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*);
H A DScriptController.h139 const String* sourceURL() const { return m_sourceURL; } // 0 if we are not evaluating any script. function in class:WebCore::ScriptController
H A DScriptEventListener.cpp61 String sourceURL; local
68 sourceURL = node->document()->url().string();
71 return V8LazyEventListener::create(name.localName().string(), eventParameterName(node->isSVGElement()), value, sourceURL, position, node);
87 String sourceURL = frame->document()->url().string(); local
89 return V8LazyEventListener::create(name.localName().string(), eventParameterName(frame->document()->isSVGDocument()), value, sourceURL, position, 0);
H A DWorkerScriptController.h60 String sourceURL; member in struct:WebCore::WorkerGlobalScopeExecutionState
H A DPageScriptDebugServer.cpp132 void PageScriptDebugServer::compileScript(ScriptState* state, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage) argument
136 ScriptDebugServer::compileScript(state, expression, sourceURL, scriptId, exceptionMessage);
138 m_compiledScriptURLs.set(*scriptId, sourceURL);
149 String sourceURL = m_compiledScriptURLs.take(scriptId); local
155 cookie = InspectorInstrumentation::willEvaluateScript(frame, sourceURL, TextPosition::minimumPosition().m_line.oneBasedInt());
H A DV8Initializer.cpp184 String sourceURL = toWebCoreString(message->GetScriptResourceName()); local
185 RefPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sourceURL, message->GetLineNumber(), message->GetStartColumn());
H A DV8LazyEventListener.cpp54 V8LazyEventListener::V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node) argument
59 , m_sourceURL(sourceURL)
H A DScriptController.cpp662 String sourceURL = sourceCode.url(); local
664 m_sourceURL = &sourceURL;
H A DScriptDebugServer.cpp639 void ScriptDebugServer::compileScript(ScriptState* state, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage) argument
649 v8::Local<v8::Script> script = V8ScriptRunner::compileScript(source, sourceURL, TextPosition(), 0, m_isolate);
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DSharedWorkerGlobalScope.cpp82 void SharedWorkerGlobalScope::logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack> callStack) argument
84 WorkerGlobalScope::logExceptionToConsole(errorMessage, sourceURL, lineNumber, columnNumber, callStack);
85 addMessageToWorkerConsole(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber, callStack);
H A DWorkerGlobalScope.cpp231 void WorkerGlobalScope::logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) argument
233 thread()->workerReportingProxy().postExceptionToWorkerObject(errorMessage, lineNumber, columnNumber, sourceURL);
247 void WorkerGlobalScope::addMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, PassRefPtr<ScriptCallStack> callStack, ScriptState* state, unsigned long requestIdentifier) argument
253 thread()->workerReportingProxy().postConsoleMessageToWorkerObject(source, level, message, lineNumber, sourceURL);
254 addMessageToWorkerConsole(source, level, message, sourceURL, lineNumber, callStack, state, requestIdentifier);
257 void WorkerGlobalScope::addMessageToWorkerConsole(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, PassRefPtr<ScriptCallStack> callStack, ScriptState* state, unsigned long requestIdentifier) argument
263 InspectorInstrumentation::addMessageToConsole(this, source, LogMessageType, level, message, sourceURL, lineNumber, 0, state, requestIdentifier);
H A DWorkerMessagingProxy.cpp117 static PassOwnPtr<WorkerExceptionTask> create(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) argument
119 return adoptPtr(new WorkerExceptionTask(errorMessage, lineNumber, columnNumber, sourceURL, messagingProxy));
123 WorkerExceptionTask(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) argument
127 , m_sourceURL(sourceURL.isolatedCopy())
316 void WorkerMessagingProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) argument
318 m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, columnNumber, sourceURL, this));
321 static void postConsoleMessageTask(ScriptExecutionContext* context, WorkerMessagingProxy* messagingProxy, MessageSource source, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceURL) argument
325 context->addConsoleMessage(source, level, message, sourceURL, lineNumber);
328 void WorkerMessagingProxy::postConsoleMessageToWorkerObject(MessageSource source, MessageLevel level, const String& message, int lineNumber, const String& sourceURL) argument
330 m_scriptExecutionContext->postTask(createCallbackTask(&postConsoleMessageTask, AllowCrossThreadAccess(this), source, level, message, lineNumber, sourceURL));
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLPlugInElement.cpp122 bool HTMLPlugInElement::dispatchBeforeLoadEvent(const String& sourceURL) argument
130 bool beforeLoadAllowedLoad = HTMLFrameOwnerElement::dispatchBeforeLoadEvent(sourceURL);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSASSSourceMapping.js385 if (!header.sourceMapURL || !header.sourceURL || header.isInline || !WebInspector.settings.cssSourceMapsEnabled.get())
387 var completeSourceMapURL = WebInspector.ParsedURL.completeURL(header.sourceURL, header.sourceMapURL);
390 this._completeSourceMapURLForCSSURL[header.sourceURL] = completeSourceMapURL;
399 var sourceURL = header.sourceURL;
400 if (!sourceURL || !header.sourceMapURL || header.isInline || !this._completeSourceMapURLForCSSURL[sourceURL])
402 delete this._sourceMapByStyleSheetURL[sourceURL];
403 delete this._completeSourceMapURLForCSSURL[sourceURL];
406 urls.remove(sourceURL);
424 var sourceURL = headersWithSameSourceURL[0].sourceURL; variable
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DScriptExecutionContext.cpp62 PendingException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) argument
66 , m_sourceURL(sourceURL)
197 bool ScriptExecutionContext::shouldSanitizeScriptError(const String& sourceURL, AccessControlStatus corsStatus) argument
199 return !(securityOrigin()->canRequest(completeURL(sourceURL)) || corsStatus == SharableCrossOrigin);
226 void ScriptExecutionContext::addConsoleMessage(MessageSource source, MessageLevel level, const String& message, const String& sourceURL, unsigned lineNumber, ScriptState* state, unsigned long requestIdentifier) argument
228 addMessage(source, level, message, sourceURL, lineNumber, 0, state, requestIdentifier);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DMainThreadWebSocketChannel.cpp72 MainThreadWebSocketChannel::MainThreadWebSocketChannel(Document* document, WebSocketChannelClient* client, const String& sourceURL, unsigned lineNumber) argument
88 , m_sourceURLAtConnection(sourceURL)
116 m_sourceURLAtConnection = callStack->at(0).sourceURL();
198 void MainThreadWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) argument
205 static_cast<ScriptExecutionContext*>(m_document)->addConsoleMessage(JSMessageSource, level, message, sourceURL, lineNumber);
H A DWorkerThreadableWebSocketChannel.cpp66 String sourceURL; local
69 sourceURL = callStack->at(0).sourceURL();
72 m_bridge->initialize(sourceURL, lineNumber);
85 m_sourceURLAtConnection = callStack->at(0).sourceURL();
138 void WorkerThreadableWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) argument
148 m_bridge->fail(reason, level, callStack->at(0).sourceURL(), callStack->at(0).lineNumber());
149 } else if (sourceURL.isEmpty() && !lineNumber) {
155 m_bridge->fail(reason, level, sourceURL, lineNumber);
179 WorkerThreadableWebSocketChannel::Peer::Peer(PassRefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const String& sourceURL, unsigne argument
266 fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) argument
435 mainThreadInitialize(ScriptExecutionContext* context, WorkerLoaderProxy* loaderProxy, PassRefPtr<ThreadableWebSocketChannelClientWrapper> prpClientWrapper, const String& taskMode, const String& sourceURL, unsigned lineNumber) argument
451 initialize(const String& sourceURL, unsigned lineNumber) argument
596 mainThreadFail(ScriptExecutionContext* context, Peer* peer, const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) argument
605 fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSharedWorkerImpl.cpp188 const String& sourceURL)
193 sourceURL));
199 int lineNumber, const String& sourceURL)
206 sourceURL);
213 const String& sourceURL)
215 WebWorkerBase::dispatchTaskToMainThread(createCallbackTask(&postConsoleMessageTask, AllowCrossThreadAccess(this), source, level, message, lineNumber, sourceURL));
224 const String& sourceURL)
228 thisPtr->client()->postConsoleMessageToWorkerObject(source, level, message, lineNumber, sourceURL);
185 postExceptionToWorkerObject(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) argument
196 postExceptionTask(ScriptExecutionContext* context, WebSharedWorkerImpl* thisPtr, const String& errorMessage, int lineNumber, const String& sourceURL) argument
209 postConsoleMessageToWorkerObject(MessageSource source, MessageLevel level, const String& message, int lineNumber, const String& sourceURL) argument
218 postConsoleMessageTask(ScriptExecutionContext* context, WebSharedWorkerImpl* thisPtr, int source, int level, const String& message, int lineNumber, const String& sourceURL) argument

Completed in 412 milliseconds

12