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

1 2 3

  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptprogram.cpp 54 Constructs a new QScriptProgram with the given \a sourceCode, \a
57 QScriptProgram::QScriptProgram(const QString& sourceCode,
60 : d_ptr(new QScriptProgramPrivate(sourceCode, fileName, firstLineNumber))
98 QString QScriptProgram::sourceCode() const
100 return d_ptr->sourceCode();
qscriptprogram.h 31 QScriptProgram(const QString& sourceCode,
41 QString sourceCode() const;
qscriptprogram_p.h 40 inline QScriptProgramPrivate(const QString& sourceCode,
48 inline QString sourceCode() const;
75 QScriptProgramPrivate::QScriptProgramPrivate(const QString& sourceCode,
78 : m_program(QScriptConverter::toString(sourceCode))
96 QString QScriptProgramPrivate::sourceCode() const
  /external/webkit/Source/WebCore/workers/
DedicatedWorkerThread.cpp 42 PassRefPtr<DedicatedWorkerThread> DedicatedWorkerThread::create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy)
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)
48 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy)
SharedWorkerThread.cpp 41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
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)
47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy)
DedicatedWorkerThread.h 43 static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&);
52 DedicatedWorkerThread(const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&);
SharedWorkerThread.h 41 static PassRefPtr<SharedWorkerThread> create(const String& name, const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
48 SharedWorkerThread(const String& name, const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
WorkerContextProxy.h 52 virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode) = 0;
WorkerThread.cpp 67 static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode)
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)
82 , m_sourceCode(sourceCode.crossThreadString())
86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
90 , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode))
WorkerMessagingProxy.h 56 virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode);
WorkerThread.h 68 WorkerThread(const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptController.cpp 64 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode)
66 return evaluate(sourceCode, 0);
69 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, ScriptValue* exception)
75 ScriptValue result = m_proxy->evaluate(sourceCode.source(), sourceCode.url().string(), WTF::toZeroBasedTextPosition(sourceCode.startPosition()), &state);
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java 33 public JavaSource(String sourceName, String sourceCode) {
37 this.src = sourceCode;
  /external/webkit/Source/WebKit/chromium/public/
WebWorker.h 51 const WebString& sourceCode) = 0;
WebSharedWorker.h 63 const WebString& sourceCode,
WebView.h 332 WEBKIT_API static void addUserScript(const WebString& sourceCode,
336 WEBKIT_API static void addUserStyleSheet(const WebString& 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/webkit/Source/WebKit/chromium/src/
WebSharedWorkerImpl.h 54 virtual void startWorkerContext(const WebURL&, const WebString& name, const WebString& userAgent, const WebString& sourceCode, long long);
WebSharedWorkerImpl.cpp 95 void WebSharedWorkerImpl::startWorkerContext(const WebURL& url, const WebString& name, const WebString& userAgent, const WebString& sourceCode, long long)
98 setWorkerThread(SharedWorkerThread::create(name, url, userAgent, sourceCode, *this, *this));
WebWorkerImpl.cpp 101 const WebString& sourceCode)
105 sourceCode, *this, *this));
  /external/webkit/Source/WebCore/bindings/js/
WorkerScriptController.cpp 102 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode)
108 ScriptValue result(evaluate(sourceCode, &exception));
116 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, ScriptValue* exception)
126 Completion comp = JSC::evaluate(exec, exec->dynamicGlobalObject()->globalScopeChain(), sourceCode.jsSourceCode(), m_workerContextWrapper.get());
143 String sourceURL = sourceCode.url().string();
JSInjectedScriptManager.cpp 44 #include <parser/SourceCode.h>
53 SourceCode sourceCode = makeSource(stringToUString(source));
57 Completion comp = JSMainThreadExecState::evaluate(scriptState, globalObject->globalScopeChain(), sourceCode, globalThisValue);
  /external/webkit/Source/WebCore/bindings/
ScriptControllerBase.cpp 53 ScriptValue ScriptController::executeScript(const ScriptSourceCode& sourceCode)
61 ScriptValue result = evaluate(sourceCode);
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.cpp 99 ScopeNode::ScopeNode(JSGlobalData* globalData, const SourceCode& source, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, CodeFeatures features, int numConstants)
115 inline ProgramNode::ProgramNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
120 PassRefPtr<ProgramNode> ProgramNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
133 inline EvalNode::EvalNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
138 PassRefPtr<EvalNode> EvalNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
162 inline FunctionBodyNode::FunctionBodyNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& sourceCode, CodeFeatures features, int numConstants)
163 : ScopeNode(globalData, sourceCode, children, varStack, funcStack, capturedVariables, features, numConstants)
167 void FunctionBodyNode::finishParsing(const SourceCode& source, ParameterNode* firstParameter, const Identifier& ident)
185 PassRefPtr<FunctionBodyNode> FunctionBodyNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& sourceCode, CodeFeatures features, int numConstants
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLScriptRunner.cpp 129 ScriptSourceCode sourceCode = sourceFromPendingScript(pendingScript, errorOccurred);
144 scriptElement->executeScript(sourceCode);
306 ScriptSourceCode sourceCode(script->textContent(), documentURLForScriptExecution(m_document), scriptStartPosition);
307 scriptElement->executeScript(sourceCode);

Completed in 247 milliseconds

1 2 3