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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerThreadStartupData.cpp 38 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients> workerClients)
41 , m_sourceCode(sourceCode.isolatedCopy())
WorkerThreadStartupData.h 48 static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients> workerClients)
50 return adoptPtr(new WorkerThreadStartupData(scriptURL, userAgent, sourceCode, startMode, contentSecurityPolicy, contentSecurityPolicyType, workerClients));
64 WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients>);
WorkerGlobalScopeProxy.h 56 virtual void startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode) = 0;
WorkerThread.cpp 108 String sourceCode = m_startupData->m_sourceCode;
128 script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
WorkerMessagingProxy.h 55 virtual void startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode) OVERRIDE;
WorkerMessagingProxy.cpp 267 void WorkerMessagingProxy::startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode)
273 OwnPtr<WorkerThreadStartupData> startupData = WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode, startMode, document->contentSecurityPolicy()->deprecatedHeader(), document->contentSecurityPolicy()->deprecatedHeaderType(), m_workerClients.release());
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java 33 public JavaSource(String sourceName, String sourceCode) {
37 this.src = sourceCode;
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
CompilingClassLoader.java 106 * @param sourceCode Java source for class. e.g. "package com.foo; class MyClass { ... }".
109 public CompilingClassLoader(ClassLoader parent, String className, CharSequence sourceCode,
112 if (!compileSourceCodeToByteCode(className, sourceCode, diagnosticListener)) {
133 private boolean compileSourceCodeToByteCode(String className, CharSequence sourceCode,
140 JavaFileObject javaFile = new InMemoryJavaFile(className, sourceCode);
193 private final CharSequence sourceCode;
195 public InMemoryJavaFile(String className, CharSequence sourceCode) {
197 this.sourceCode = sourceCode;
210 return sourceCode;
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebSharedWorker.h 64 const WebString& sourceCode,
WebDocument.h 135 WEBKIT_EXPORT void insertUserStyleSheet(const WebString& sourceCode, UserStyleLevel);
WebView.h 473 WEBKIT_EXPORT static void addUserStyleSheet(const WebString& sourceCode,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptController.cpp 180 void WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, RefPtr<ErrorEvent>* errorEvent)
186 evaluate(sourceCode.source(), sourceCode.url().string(), sourceCode.startPosition(), &state);
ScriptDebugServer.h 127 String preprocessSourceCode(const String& sourceCode);
ScriptController.cpp 607 ScriptValue ScriptController::executeScript(const ScriptSourceCode& sourceCode)
614 return executeScriptInMainWorld(sourceCode);
660 ScriptValue ScriptController::executeScriptInMainWorld(const ScriptSourceCode& sourceCode, AccessControlStatus corsStatus)
662 String sourceURL = sourceCode.url();
676 v8::Local<v8::Value> object = compileAndRunScript(sourceCode, corsStatus);
ScriptDebugServer.cpp 96 String preprocessSourceCode(const String& sourceCode, const String& sourceName)
101 return sourceCode;
106 v8::Handle<v8::String> sourceCodeString = v8::String::New(sourceCode.utf8().data(), sourceCode.utf8().length());
116 return sourceCode;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp 122 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred);
140 scriptLoader->executeScript(sourceCode);
310 ScriptSourceCode sourceCode(script->textContent(), documentURLForScriptExecution(m_document), scriptStartPosition);
311 scriptLoader->executeScript(sourceCode);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.cpp 311 void ScriptLoader::executeScript(const ScriptSourceCode& sourceCode)
315 if (sourceCode.isEmpty())
339 if (sourceCode.resource() && sourceCode.resource()->passesAccessControlCheck(m_element->document()->securityOrigin()))
345 frame->script()->executeScriptInMainWorld(sourceCode, corsCheck);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSharedWorkerImpl.h 102 virtual void startWorkerContext(const WebURL&, const WebString& name, const WebString& userAgent, const WebString& sourceCode, const WebString& contentSecurityPolicy, WebContentSecurityPolicyType, long long cacheId);
WebDocument.cpp 203 void WebDocument::insertUserStyleSheet(const WebString& sourceCode, UserStyleLevel styleLevel)
209 parsedSheet->parseString(sourceCode);
WebSharedWorkerImpl.cpp 369 void WebSharedWorkerImpl::startWorkerContext(const WebURL& url, const WebString& name, const WebString& userAgent, const WebString& sourceCode, const WebString& contentSecurityPolicy, WebContentSecurityPolicyType policyType, long long)
376 OwnPtr<WorkerThreadStartupData> startupData = WorkerThreadStartupData::create(url, userAgent, sourceCode, startMode, contentSecurityPolicy, static_cast<WebCore::ContentSecurityPolicy::HeaderType>(policyType), workerClients.release());
WebViewImpl.cpp     [all...]
  /dalvik/docs/
prettify.js 516 * where index_n is an index into the sourceCode, and style_n is a style
518 * all characters in sourceCode[index_n-1:index_n].
562 return function (sourceCode, opt_basePos) {
566 var pos = 0; // index into sourceCode
567 var tail = sourceCode;
695 * decorator that takes sourceCode as plain text and that returns a
750 * @param {string} sourceCode as plain text
807 return function (sourceCode) {
812 var decorations = splitStringAndCommentTokens(sourceCode);
815 decorations = splitNonStringNonCommentTokens(sourceCode, decorations)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
convert.jar 
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 460 ScriptSourceCode sourceCode(m_pendingScript.get());
479 scriptLoader->executeScript(sourceCode);
    [all...]
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 

Completed in 1382 milliseconds

1 2