Searched refs:scriptURL (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DAbstractWorker.cpp71 KURL scriptURL = scriptExecutionContext()->completeURL(url); local
72 if (!scriptURL.isValid()) {
77 if (!scriptExecutionContext()->securityOrigin()->canRequest(scriptURL)) {
82 if (scriptExecutionContext()->contentSecurityPolicy() && !scriptExecutionContext()->contentSecurityPolicy()->allowScriptFromSource(scriptURL)) {
87 return scriptURL;
H A DSharedWorker.idl35 CustomConstructor(DOMString scriptURL, [Default=NullString] optional DOMString name),
H A DSharedWorker.cpp69 KURL scriptURL = worker->resolveURL(url, ec); local
70 if (scriptURL.isEmpty())
81 SharedWorkerRepository::connect(worker.get(), remotePort.release(), scriptURL, name, ec);
H A DDedicatedWorkerThread.cpp43 PassRefPtr<DedicatedWorkerThread> DedicatedWorkerThread::create(const KURL& scriptURL, const String& userAgent, const GroupSettings* settings, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, const SecurityOrigin* topOrigin) argument
45 return adoptRef(new DedicatedWorkerThread(scriptURL, userAgent, settings, sourceCode, workerLoaderProxy, workerObjectProxy, startMode, contentSecurityPolicy, contentSecurityPolicyType, topOrigin));
H A DSharedWorkerThread.cpp41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL, const String& userAgent, const GroupSettings* settings, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType) argument
43 return adoptRef(new SharedWorkerThread(name, scriptURL, userAgent, settings, sourceCode, workerLoaderProxy, workerReportingProxy, startMode, contentSecurityPolicy, contentSecurityPolicyType));
H A DWorkerThread.cpp72 static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const GroupSettings* settings, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, const SecurityOrigin* topOrigin) argument
74 return adoptPtr(new WorkerThreadStartupData(scriptURL, userAgent, settings, sourceCode, startMode, contentSecurityPolicy, contentSecurityPolicyType, topOrigin));
86 WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const GroupSettings*, const String& sourceCode, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, const SecurityOrigin* topOrigin);
89 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const GroupSettings* settings, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, const SecurityOrigin* topOrigin) argument
90 : m_scriptURL(scriptURL.copy())
107 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const GroupSettings* settings, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, const SecurityOrigin* topOrigin) argument
111 , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, settings, sourceCode, startMode, contentSecurityPolicy, contentSecurityPolicyType, topOrigin))
H A DWorker.cpp69 KURL scriptURL = worker->resolveURL(url, ec); local
70 if (scriptURL.isEmpty())
80 worker->m_scriptLoader->loadAsynchronously(context, scriptURL, DenyCrossOriginRequests, worker.get());
H A DDedicatedWorkerThread.h44 static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, const GroupSettings*, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType, const SecurityOrigin* topOrigin);
H A DWorkerContextProxy.h53 virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode) = 0;
H A DWorkerMessagingProxy.h56 virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode) OVERRIDE;
H A DWorkerMessagingProxy.cpp274 void WorkerMessagingProxy::startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode) argument
282 RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(scriptURL, userAgent, settings, sourceCode, *this, *this, startMode, document->contentSecurityPolicy()->deprecatedHeader(), document->contentSecurityPolicy()->deprecatedHeaderType(), document->topOrigin());
285 InspectorInstrumentation::didStartWorkerContext(m_scriptExecutionContext.get(), this, scriptURL);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSWorkerCustom.cpp55 String scriptURL = exec->argument(0).toString(exec)->value(exec);
63 RefPtr<Worker> worker = Worker::create(window->document(), scriptURL, ec);
H A DJSSharedWorkerCustom.cpp65 String scriptURL = exec->argument(0).toString(exec)->value(exec);
76 RefPtr<SharedWorker> worker = SharedWorker::create(window->document(), scriptURL, name, ec);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DCompilerScriptMapping.js169 var scriptURL = WebInspector.ParsedURL.completeURL(WebInspector.inspectedPageURL, script.sourceURL); variable
170 if (!scriptURL)
172 var sourceMapURL = WebInspector.ParsedURL.completeURL(scriptURL, script.sourceMapURL);
179 sourceMap = WebInspector.SourceMap.load(sourceMapURL, scriptURL);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DProxyServerCFNet.cpp79 CFURLRef scriptURL = static_cast<CFURLRef>(CFDictionaryGetValue(proxyDictionary, kCFProxyAutoConfigurationURLKey)); local
80 if (!scriptURL || CFGetTypeID(scriptURL) != CFURLGetTypeID())
84 RetainPtr<CFRunLoopSourceRef> runLoopSource = adoptCF(CFNetworkExecuteProxyAutoConfigurationURL(scriptURL, url, proxyAutoConfigurationResultCallback, &context));
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-CFNetwork/PyObjCTest/
H A Dtest_cfproxysupport.py69 scriptURL = CFURLCreateWithFileSystemPath(
76 scriptURL, url, callback, ctx)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-CFNetwork/PyObjCTest/
H A Dtest_cfproxysupport.py69 scriptURL = CFURLCreateWithFileSystemPath(
76 scriptURL, url, callback, ctx)
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DSubframeLoader.cpp81 KURL scriptURL; local
84 scriptURL = completeURL(urlString); // completeURL() encodes the URL.
93 if (!scriptURL.isEmpty())
94 frame->script()->executeIfJavaScriptURL(scriptURL);
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorDebuggerAgent.cpp666 String scriptURL = hasSourceURL ? sourceURL : script.url; local
668 m_frontend->scriptParsed(scriptId, scriptURL, script.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript, sourceMapURLParam, hasSourceURLParam);
672 if (scriptURL.isEmpty())
682 if (!matches(scriptURL, url, isRegex))
/macosx-10.9.5/modemccl-25.1/CCLEngine/
H A DCCLEngine.c443 CFURLRef scriptURL= CopyScriptWithPersonality(bundleRef, personality); local
444 if(scriptURL!= NULL)
446 if(CFURLGetFileSystemRepresentation(scriptURL, true, pathBuffer, MAXPATHLEN))
454 CFRelease(scriptURL);

Completed in 427 milliseconds