HomeSort by relevance Sort by last modified time
    Searched refs:sourceURL (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext.cpp 42 const KURL& sourceURL = imageSource->sourceURL();
43 bool hasURL = (sourceURL.isValid() && !sourceURL.isAboutBlankURL());
46 if (sourceURL.protocolIsData() || m_cleanURLs.contains(sourceURL.string()))
48 if (m_dirtyURLs.contains(sourceURL.string()))
56 m_dirtyURLs.add(sourceURL.string());
58 m_cleanURLs.add(sourceURL.string());
CanvasImageSource.h 69 virtual const KURL& sourceURL() const { return blankURL(); }
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannel.cpp 54 String sourceURL;
58 sourceURL = callStack->at(0).sourceURL();
64 return WorkerThreadableWebSocketChannel::create(*workerGlobalScope, client, sourceURL, lineNumber);
69 return NewWebSocketChannelImpl::create(document, client, sourceURL, lineNumber);
71 return MainThreadWebSocketChannel::create(document, client, sourceURL, lineNumber);
WorkerThreadableWebSocketChannel.cpp 112 WorkerThreadableWebSocketChannel::WorkerThreadableWebSocketChannel(WorkerGlobalScope& workerGlobalScope, WebSocketChannelClient* client, const String& sourceURL, unsigned lineNumber)
114 , m_sourceURLAtConnection(sourceURL)
117 m_bridge->initialize(sourceURL, lineNumber);
155 void WorkerThreadableWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber)
165 m_bridge->fail(reason, level, callStack->at(0).sourceURL(), callStack->at(0).lineNumber());
166 } else if (sourceURL.isEmpty() && !lineNumber) {
172 m_bridge->fail(reason, level, sourceURL, lineNumber);
202 void Peer::initializeInternal(ExecutionContext* context, const String& sourceURL, unsigned lineNumber)
207 m_mainWebSocketChannel = NewWebSocketChannelImpl::create(document, this, sourceURL, lineNumber);
209 m_mainWebSocketChannel = MainThreadWebSocketChannel::create(document, this, sourceURL, lineNumber)
    [all...]
WorkerThreadableWebSocketChannel.h 58 static WebSocketChannel* create(WorkerGlobalScope& workerGlobalScope, WebSocketChannelClient* client, const String& sourceURL, unsigned lineNumber)
60 return adoptRefCountedGarbageCollected(new WorkerThreadableWebSocketChannel(workerGlobalScope, client, sourceURL, lineNumber));
103 void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber);
141 void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber);
161 WorkerThreadableWebSocketChannel(WorkerGlobalScope&, WebSocketChannelClient*, const String& sourceURL, unsigned lineNumber);
WebSocketChannel.h 89 // sourceURL and lineNumber parameters may be shown with the reason text
91 // Even if sourceURL and lineNumber are specified, they may be ignored
95 // You can specify String() and 0 for sourceURL and lineNumber
97 virtual void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerReportingProxy.h 48 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) = 0;
SharedWorkerGlobalScope.cpp 81 void SharedWorkerGlobalScope::logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack)
83 WorkerGlobalScope::logExceptionToConsole(errorMessage, scriptId, sourceURL, lineNumber, columnNumber, callStack);
84 RefPtrWillBeRawPtr<ConsoleMessage> consoleMessage = ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber);
WorkerConsole.cpp 56 consoleMessage->setURL(lastCaller.sourceURL());
WorkerMessagingProxy.h 65 void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL);
66 void reportConsoleMessage(MessageSource, MessageLevel, const String& message, int lineNumber, const String& sourceURL);
SharedWorkerGlobalScope.h 66 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE;
WorkerObjectProxy.h 63 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Script.js 32 * @param {string} sourceURL
41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
45 this.sourceURL = sourceURL;
88 return this.sourceURL;
166 return source + "\n //# sourceURL=" + this.sourceURL;
195 // We append correct sourceURL to script for consistency only. It's not actually needed for things to work correctly.
220 return !!this.sourceURL && !startsAtZero;
239 return !this.sourceURL;
    [all...]
SourceMap.js 156 * @param {string} sourceURL
159 sourceContent: function(sourceURL)
161 return this._sourceContentByURL[sourceURL];
165 * @param {string} sourceURL
169 sourceContentProvider: function(sourceURL, contentType)
171 var sourceContent = this.sourceContent(sourceURL);
174 return new WebInspector.CompilerSourceMappingContentProvider(sourceURL, contentType);
226 * @param {string} sourceURL of the originating resource
231 findEntryReversed: function(sourceURL, lineNumber, span)
233 var mappings = this._reverseMappingsBySourceURL[sourceURL];
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebServiceWorkerContextClient.h 98 virtual void reportException(const WebString& errorMessage, int lineNumber, int columnNumber, const WebString& sourceURL) { }
101 virtual void reportConsoleMessage(int source, int level, const WebString& message, int lineNumber, const WebString& sourceURL) { }
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallFrame.h 48 const String& sourceURL() const { return m_scriptName; }
ScriptDebugListener.h 60 String sourceURL;
InspectorConsoleAgent.h 94 void addProfileFinishedMessageToConsole(PassRefPtrWillBeRawPtr<ScriptProfile>, unsigned lineNumber, const String& sourceURL);
95 void addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/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));
66 V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*, v8::Isolate*);
WorkerScriptController.cpp 88 String sourceURL;
227 TOSTRING_DEFAULT(V8StringResource<>, sourceURL, message->GetScriptOrigin().ResourceName(), ScriptValue());
228 m_globalScopeExecutionState->sourceURL = sourceURL;
255 if (m_workerGlobalScope.shouldSanitizeScriptError(state.sourceURL, NotSharableCrossOrigin))
258 *errorEvent = ErrorEvent::create(state.errorMessage, state.sourceURL, state.lineNumber, state.columnNumber, m_world.get());
261 ASSERT(!m_workerGlobalScope.shouldSanitizeScriptError(state.sourceURL, NotSharableCrossOrigin));
266 event = ErrorEvent::create(state.errorMessage, state.sourceURL, state.lineNumber, state.columnNumber, m_world.get());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
CompilerScriptMapping.js 154 var sourceURL = sourceURLs[i];
155 if (this._sourceMapForURL.get(sourceURL))
157 this._sourceMapForURL.set(sourceURL, sourceMap);
158 if (!this._workspace.hasMappingForURL(sourceURL) && !this._workspace.uiSourceCodeForURL(sourceURL)) {
159 var contentProvider = sourceMap.sourceContentProvider(sourceURL, WebInspector.resourceTypes.Script);
160 this._networkWorkspaceBinding.addFileForURL(sourceURL, contentProvider, script.isContentScript());
162 var uiSourceCode = this._workspace.uiSourceCodeForURL(sourceURL);
167 missingSources.push(sourceURL);
238 // script.sourceURL can be a random string, but is generally an absolute path -> complete it to inspected page url fo
    [all...]
ScriptSnippetModel.js 277 * @param {?string=} sourceURL
279 _runScript: function(scriptId, executionContext, sourceURL)
299 this._printRunScriptResult(target, result, sourceURL);
301 this._printRunOrCompileScriptResultFailure(target, exceptionDetails, sourceURL);
308 * @param {?string=} sourceURL
310 _printRunScriptResult: function(target, result, sourceURL)
318 sourceURL,
330 * @param {?string=} sourceURL
332 _printRunOrCompileScriptResultFailure: function(target, exceptionDetails, sourceURL)
340 sourceURL,
    [all...]
SASSSourceMapping.js 394 if (!header.sourceMapURL || !header.sourceURL || header.isInline || !WebInspector.settings.cssSourceMapsEnabled.get())
396 var completeSourceMapURL = WebInspector.ParsedURL.completeURL(header.sourceURL, header.sourceMapURL);
399 this._completeSourceMapURLForCSSURL[header.sourceURL] = completeSourceMapURL;
408 var sourceURL = header.sourceURL;
409 if (!sourceURL || !header.sourceMapURL || header.isInline || !this._completeSourceMapURLForCSSURL[sourceURL])
411 delete this._sourceMapByStyleSheetURL[sourceURL];
412 delete this._completeSourceMapURLForCSSURL[sourceURL];
415 urls.remove(sourceURL);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPopoverHelper.js 84 var sourceURL = response.sourceURL;
85 if (rawLocation && sourceURL) {
87 var link = this._linkifier.linkifyRawLocation(rawLocation, sourceURL, "function-location-link");
  /external/chromium_org/third_party/WebKit/Source/web/
ServiceWorkerGlobalScopeProxy.h 78 virtual void reportException(const String& errorMessage, int lineNumber, int columnNumber, const String& sourceURL) OVERRIDE;

Completed in 488 milliseconds

1 2 3 4 5