Searched defs:sourceCode (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptprogram.cpp54 Constructs a new QScriptProgram with the given \a sourceCode, \a
57 QScriptProgram::QScriptProgram(const QString& sourceCode, argument
60 : d_ptr(new QScriptProgramPrivate(sourceCode, fileName, firstLineNumber))
98 QString QScriptProgram::sourceCode() const function in class:QScriptProgram
100 return d_ptr->sourceCode();
H A Dqscriptprogram_p.h40 inline QScriptProgramPrivate(const QString& sourceCode,
48 inline QString sourceCode() const;
75 QScriptProgramPrivate::QScriptProgramPrivate(const QString& sourceCode, argument
78 : m_program(QScriptConverter::toString(sourceCode))
96 QString QScriptProgramPrivate::sourceCode() const function in class:QScriptProgramPrivate
/external/webkit/Source/WebCore/bindings/
H A DScriptControllerBase.cpp53 ScriptValue ScriptController::executeScript(const ScriptSourceCode& sourceCode) argument
61 ScriptValue result = evaluate(sourceCode);
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerScriptController.cpp64 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode) argument
66 return evaluate(sourceCode, 0);
69 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, ScriptValue* exception) argument
75 ScriptValue result = m_proxy->evaluate(sourceCode.source(), sourceCode.url().string(), WTF::toZeroBasedTextPosition(sourceCode.startPosition()), &state);
H A DScriptController.cpp220 ScriptValue ScriptController::evaluate(const ScriptSourceCode& sourceCode) argument
222 String sourceURL = sourceCode.url();
235 v8::Local<v8::Value> object = m_proxy->evaluate(sourceCode, 0);
/external/webkit/Source/WebCore/workers/
H A DDedicatedWorkerThread.cpp42 PassRefPtr<DedicatedWorkerThread> DedicatedWorkerThread::create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy) argument
44 return adoptRef(new DedicatedWorkerThread(scriptURL, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy));
47 DedicatedWorkerThread::DedicatedWorkerThread(const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy) argument
48 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy)
H A DSharedWorkerThread.cpp41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) argument
43 return adoptRef(new SharedWorkerThread(name, scriptURL, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy));
46 SharedWorkerThread::SharedWorkerThread(const String& name, const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) argument
47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy)
H A DWorkerThread.cpp67 static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
69 return new WorkerThreadStartupData(scriptURL, userAgent, sourceCode);
76 WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode);
79 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
82 , m_sourceCode(sourceCode.crossThreadString())
86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) argument
90 , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode))
H A DWorkerMessagingProxy.cpp237 void WorkerMessagingProxy::startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
239 RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(scriptURL, userAgent, sourceCode, *this, *this);
/external/webkit/Source/WebCore/bindings/js/
H A DJSInjectedScriptManager.cpp53 SourceCode sourceCode = makeSource(stringToUString(source)); local
57 Completion comp = JSMainThreadExecState::evaluate(scriptState, globalObject->globalScopeChain(), sourceCode, globalThisValue);
H A DWorkerScriptController.cpp102 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode) argument
108 ScriptValue result(evaluate(sourceCode, &exception));
116 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, ScriptValue* exception) argument
126 Completion comp = JSC::evaluate(exec, exec->dynamicGlobalObject()->globalScopeChain(), sourceCode.jsSourceCode(), m_workerContextWrapper.get());
143 String sourceURL = sourceCode.url().string();
H A DScriptController.cpp118 ScriptValue ScriptController::evaluateInWorld(const ScriptSourceCode& sourceCode, DOMWrapperWorld* world) argument
120 const SourceCode& jsSourceCode = sourceCode.jsSourceCode();
139 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL, sourceCode.startLine());
163 ScriptValue ScriptController::evaluate(const ScriptSourceCode& sourceCode) argument
165 return evaluateInWorld(sourceCode, mainThreadNormalWorld());
496 ScriptSourceCode sourceCode(script, forceUserGesture ? KURL() : m_frame->document()->url());
504 ScriptValue result = evaluateInWorld(sourceCode, world);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DCompilingClassLoader.java106 * @param sourceCode Java source for class. e.g. "package com.foo; class MyClass { ... }".
109 public CompilingClassLoader(ClassLoader parent, String className, CharSequence sourceCode, argument
112 if (!compileSourceCodeToByteCode(className, sourceCode, diagnosticListener)) {
133 private boolean compileSourceCodeToByteCode(String className, CharSequence sourceCode, argument
140 JavaFileObject javaFile = new InMemoryJavaFile(className, sourceCode);
193 private final CharSequence sourceCode; field in class:CompilingClassLoader.InMemoryJavaFile
195 public InMemoryJavaFile(String className, CharSequence sourceCode) { argument
197 this.sourceCode = sourceCode;
210 return sourceCode;
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebSharedWorkerImpl.cpp95 void WebSharedWorkerImpl::startWorkerContext(const WebURL& url, const WebString& name, const WebString& userAgent, const WebString& sourceCode, long long) argument
98 setWorkerThread(SharedWorkerThread::create(name, url, userAgent, sourceCode, *this, *this));
H A DWebWorkerImpl.cpp101 const WebString& sourceCode)
105 sourceCode, *this, *this));
99 startWorkerContext(const WebURL& scriptUrl, const WebString& userAgent, const WebString& sourceCode) argument
H A DWebWorkerClientImpl.cpp136 const String& sourceCode)
147 sourceCode));
150 m_webWorker->startWorkerContext(scriptURL, userAgent, sourceCode);
320 const String& sourceCode)
323 userAgent, sourceCode); local
134 startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
316 startWorkerContextTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& scriptURL, const String& userAgent, const String& sourceCode) argument
H A DWebViewImpl.cpp2101 void WebView::addUserScript(const WebString& sourceCode, argument
2112 pageGroup->addUserScriptToWorld(world.get(), sourceCode, WebURL(), patterns.release(), 0,
2117 void WebView::addUserStyleSheet(const WebString& sourceCode, argument
2133 pageGroup->addUserStyleSheetToWorld(world.get(), sourceCode, WebURL(), patterns.release(), 0,
/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.cpp162 inline FunctionBodyNode::FunctionBodyNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& sourceCode, CodeFeatures features, int numConstants) argument
163 : ScopeNode(globalData, sourceCode, children, varStack, funcStack, capturedVariables, features, numConstants)
185 PassRefPtr<FunctionBodyNode> FunctionBodyNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& sourceCode, CodeFeatures features, int numConstants) argument
187 RefPtr<FunctionBodyNode> node = new FunctionBodyNode(globalData, children, varStack, funcStack, capturedVariables, sourceCode, features, numConstants);
H A DLexer.cpp1198 SourceCode Lexer::sourceCode(int openBrace, int closeBrace, int firstLine) function in class:JSC::Lexer
/external/webkit/Source/WebCore/html/parser/
H A DHTMLScriptRunner.cpp129 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred); local
144 scriptElement->executeScript(sourceCode);
306 ScriptSourceCode sourceCode(script->textContent(), documentURLForScriptExecution(m_document), scriptStartPosition);
307 scriptElement->executeScript(sourceCode);
/external/webkit/Source/WebCore/dom/
H A DScriptElement.cpp261 void ScriptElement::executeScript(const ScriptSourceCode& sourceCode) argument
265 if (sourceCode.isEmpty())
279 frame->script()->evaluate(sourceCode);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp344 * @sourceCode: code of a user stylesheet
347 void DumpRenderTreeSupportGtk::addUserStyleSheet(WebKitWebFrame* frame, const char* sourceCode, bool allFrames) argument
357 page->group().addUserStyleSheetToWorld(mainThreadNormalWorld(), sourceCode, KURL(), 0, 0, allFrames ? InjectInAllFrames : InjectInTopFrameOnly); local
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.cpp923 void DumpRenderTreeSupportQt::addUserStyleSheet(QWebPage* page, const QString& sourceCode) argument
925 page->handle()->page->group().addUserStyleSheetToWorld(mainThreadNormalWorld(), sourceCode, QUrl(), 0, 0, WebCore::InjectInAllFrames); local
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.cpp841 void LayoutTestController::addUserStyleSheet(const QString& sourceCode) argument
843 DumpRenderTreeSupportQt::addUserStyleSheet(m_drt->webPage(), sourceCode);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
H A Dconvert.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ ...

Completed in 419 milliseconds

12