Home
last modified time | relevance | path

Searched refs:scriptSource (Results 1 – 12 of 12) sorted by relevance

/external/v8/test/mjsunit/
Dfunction-source.js35 assertEquals(Debug.scriptSource(f), Debug.scriptSource(h));
42 assertEquals(Debug.scriptSource(f), Debug.scriptSource(h));
47 assertEquals(Debug.scriptSource(f), Debug.scriptSource(g));
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8InjectedScriptManager.cpp76 ScriptObject InjectedScriptManager::createInjectedScript(const String& scriptSource, ScriptState* i… in createInjectedScript() argument
98 v8::Local<v8::Script> script = v8::Script::Compile(v8String(scriptSource)); in createInjectedScript()
/external/webkit/Source/WebKit/qt/Api/
Dqwebelement.cpp773 QVariant QWebElement::evaluateJavaScript(const QString& scriptSource) in evaluateJavaScript() argument
775 if (scriptSource.isEmpty()) in evaluateJavaScript()
790 …JSC::UString script(reinterpret_cast_ptr<const UChar*>(scriptSource.data()), scriptSource.length()… in evaluateJavaScript()
Dqwebframe.h203 QVariant evaluateJavaScript(const QString& scriptSource);
Dqwebelement.h148 QVariant evaluateJavaScript(const QString& scriptSource);
Dqwebframe.cpp1530 QVariant QWebFrame::evaluateJavaScript(const QString& scriptSource) in evaluateJavaScript() argument
1537 … JSC::JSValue v = d->frame->script()->executeScript(ScriptSourceCode(scriptSource)).jsValue(); in evaluateJavaScript()
1544 rc = engine->evaluate(scriptSource).toVariant(); in evaluateJavaScript()
/external/webkit/Source/WebCore/inspector/
DInspectorDebuggerAgent.h89 void getScriptSource(ErrorString*, const String& sourceID, String* scriptSource);
DInspectorDebuggerAgent.cpp286 …InspectorDebuggerAgent::getScriptSource(ErrorString*, const String& sourceID, String* scriptSource) in getScriptSource() argument
288 *scriptSource = m_scripts.get(sourceID).data; in getScriptSource()
/external/webkit/Source/WebKit/qt/declarative/
Dqdeclarativewebview.cpp454 QVariant QDeclarativeWebView::evaluateJavaScript(const QString& scriptSource) in evaluateJavaScript() argument
456 return this->page()->mainFrame()->evaluateJavaScript(scriptSource); in evaluateJavaScript()
/external/webkit/Source/WebCore/dom/
Dxml_expat_tokenizer.cpp870 String scriptSource = m_pendingScript->script(); in notifyFinished() local
881 m_view->frame()->loader()->executeScript(cachedScriptUrl, 0, scriptSource); in notifyFinished()
/external/v8/src/
Ddebug-debugger.js556 Debug.scriptSource = function(func_or_script_name) { function
899 var source = full ? this.scriptSource(f) : this.source(f);
/external/v8/test/cctest/
Dtest-api.cc14475 v8::Handle<v8::String> scriptSource = v8::String::New( in THREADED_TEST() local
14477 v8::Local<v8::Script> script(v8::Script::Compile(scriptSource, &origin)); in THREADED_TEST()