/external/webkit/Source/WebCore/workers/ |
D | WorkerThread.cpp | 67 …static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, … in create() 69 return new WorkerThreadStartupData(scriptURL, userAgent, sourceCode); in create() 76 … WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode); 79 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, co… in WorkerThreadStartupData() argument 80 : m_scriptURL(scriptURL.copy()) in WorkerThreadStartupData() 86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode… in WorkerThread() argument 90 , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode)) in WorkerThread()
|
D | AbstractWorker.cpp | 76 KURL scriptURL = scriptExecutionContext()->completeURL(url); in resolveURL() local 77 if (!scriptURL.isValid()) { in resolveURL() 82 …if (!scriptExecutionContext()->securityOrigin()->canAccess(SecurityOrigin::create(scriptURL).get()… in resolveURL() 86 return scriptURL; in resolveURL()
|
D | SharedWorker.cpp | 61 KURL scriptURL = worker->resolveURL(url, ec); in create() local 62 if (scriptURL.isEmpty()) in create() 65 SharedWorkerRepository::connect(worker.get(), remotePort.release(), scriptURL, name, ec); in create() 67 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), true); in create()
|
D | Worker.cpp | 63 KURL scriptURL = worker->resolveURL(url, ec); in create() local 64 if (scriptURL.isEmpty()) in create() 68 …worker->m_scriptLoader->loadAsynchronously(context, scriptURL, DenyCrossOriginRequests, worker.get… in create() 73 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), false); in create()
|
D | SharedWorkerThread.cpp | 41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL… in create() argument 43 …return adoptRef(new SharedWorkerThread(name, scriptURL, userAgent, sourceCode, workerLoaderProxy, … in create()
|
D | DedicatedWorkerThread.cpp | 42 PassRefPtr<DedicatedWorkerThread> DedicatedWorkerThread::create(const KURL& scriptURL, const String… in create() argument 44 …return adoptRef(new DedicatedWorkerThread(scriptURL, userAgent, sourceCode, workerLoaderProxy, wor… in create()
|
D | WorkerContextProxy.h | 52 …virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sour…
|
D | DedicatedWorkerThread.h | 43 …static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, co…
|
D | WorkerMessagingProxy.h | 56 …virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sour…
|
D | WorkerMessagingProxy.cpp | 237 void WorkerMessagingProxy::startWorkerContext(const KURL& scriptURL, const String& userAgent, const… in startWorkerContext() argument 239 …RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(scriptURL, userAgent, sourceC… in startWorkerContext()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | InjectedFakeWorker.js | 61 var scriptURL = this._expandURLAndCheckOrigin(document.baseURI, location.href, url); 67 this._buildWorker(scriptURL); 69 InjectedScriptHost.didCreateWorker(this._id, scriptURL.url, false); 244 var scriptURL = new URL(baseURL).completeWith(url); 246 if (!scriptURL.sameOrigin(origin)) 248 return scriptURL;
|
D | DebuggerPresentationModel.js | 77 sourceFileForScriptURL: function(scriptURL) argument 79 return this._sourceFiles[scriptURL];
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebWorkerClientImpl.cpp | 134 void WebWorkerClientImpl::startWorkerContext(const KURL& scriptURL, in startWorkerContext() argument 145 scriptURL.string(), in startWorkerContext() 150 m_webWorker->startWorkerContext(scriptURL, userAgent, sourceCode); in startWorkerContext() 318 const String& scriptURL, in startWorkerContextTask() argument 322 thisPtr->m_webWorker->startWorkerContext(KURL(ParsedURLString, scriptURL), in startWorkerContextTask()
|
D | WebWorkerClientImpl.h | 111 const WTF::String& scriptURL,
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSWorkerCustom.cpp | 54 UString scriptURL = exec->argument(0).toString(exec); in constructJSWorker() local 62 RefPtr<Worker> worker = Worker::create(ustringToString(scriptURL), window->document(), ec); in constructJSWorker()
|
D | JSSharedWorkerCustom.cpp | 61 UString scriptURL = exec->argument(0).toString(exec); in constructJSSharedWorker() local 72 …RefPtr<SharedWorker> worker = SharedWorker::create(ustringToString(scriptURL), ustringToString(nam… in constructJSSharedWorker()
|
/external/webkit/Source/WebCore/loader/ |
D | SubframeLoader.cpp | 74 KURL scriptURL; in requestFrame() local 77 scriptURL = completeURL(urlString); // completeURL() encodes the URL. in requestFrame() 86 if (!scriptURL.isEmpty()) in requestFrame() 87 frame->script()->executeIfJavaScriptURL(scriptURL); in requestFrame()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebWorker.h | 49 virtual void startWorkerContext(const WebURL& scriptURL,
|
D | WebSharedWorker.h | 60 virtual void startWorkerContext(const WebURL& scriptURL,
|