Home
last modified time | relevance | path

Searched refs:ScriptSourceCode (Results 1 – 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorInstrumentationCustomInl.h40 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents*, LocalFrame*, const ScriptSourceCo…
72 inline PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame* frame, const ScriptSourceCode& sourceCod… in preprocess()
74 FAST_RETURN_IF_NO_FRONTENDS(PassOwnPtr<ScriptSourceCode>()); in preprocess()
77 return PassOwnPtr<ScriptSourceCode>(); in preprocess()
DInspectorInstrumentation.cpp135 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* f… in preprocessImpl()
139 return PassOwnPtr<ScriptSourceCode>(); in preprocessImpl()
DPageDebuggerAgent.h45 class ScriptSourceCode; variable
DInspectorDebuggerAgent.h71 class ScriptSourceCode; variable
105 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DScriptController.h57 class ScriptSourceCode; variable
85 …void executeScriptInMainWorld(const ScriptSourceCode&, AccessControlStatus = NotSharableCrossOrigi…
86 v8::Local<v8::Value> executeScriptInMainWorldAndReturnValue(const ScriptSourceCode&);
87 …::Value> executeScriptAndReturnValue(v8::Handle<v8::Context>, const ScriptSourceCode&, AccessContr…
97 …void executeScriptInIsolatedWorld(int worldID, const Vector<ScriptSourceCode>& sources, int extens…
156 …v8::Local<v8::Value> evaluateScriptInMainWorld(const ScriptSourceCode&, AccessControlStatus, Execu…
DScriptSourceCode.h44 class ScriptSourceCode {
46ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition& startPosition…
58 ScriptSourceCode(ScriptResource* resource) in ScriptSourceCode() function
65 ScriptSourceCode(PassRefPtr<ScriptStreamer> streamer, ScriptResource* resource) in ScriptSourceCode() function
DPageScriptDebugServer.h45 class ScriptSourceCode; variable
72 virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&) OVERRIDE;
93 OwnPtr<ScriptSourceCode> m_preprocessorSourceCode;
DScriptPreprocessor.h41 class ScriptSourceCode; variable
47 ScriptPreprocessor(const ScriptSourceCode&, LocalFrame*);
DScriptStreamerTest.cpp163 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred); in TEST_F()
196 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred); in TEST_F()
251 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred); in TEST_F()
275 ScriptSourceCode sourceCode = pendingScript().getSource(KURL(), errorOccurred); in TEST_F()
DWorkerScriptController.h45 class ScriptSourceCode; variable
55 void evaluate(const ScriptSourceCode&, RefPtrWillBeRawPtr<ErrorEvent>* = 0);
DScriptController.cpp169 …:executeScriptAndReturnValue(v8::Handle<v8::Context> context, const ScriptSourceCode& source, Acce… in executeScriptAndReturnValue()
549 …v8::Local<v8::Value> result = evaluateScriptInMainWorld(ScriptSourceCode(decodedURL.substring(java… in executeScriptIfJavaScriptURL()
572 evaluateScriptInMainWorld(ScriptSourceCode(script), NotSharableCrossOrigin, policy); in executeScriptInMainWorld()
575 void ScriptController::executeScriptInMainWorld(const ScriptSourceCode& sourceCode, AccessControlSt… in executeScriptInMainWorld()
581 …Value> ScriptController::executeScriptInMainWorldAndReturnValue(const ScriptSourceCode& sourceCode) in executeScriptInMainWorldAndReturnValue()
586 v8::Local<v8::Value> ScriptController::evaluateScriptInMainWorld(const ScriptSourceCode& sourceCode… in evaluateScriptInMainWorld()
607 …OwnPtr<ScriptSourceCode> maybeProcessedSourceCode = InspectorInstrumentation::preprocess(m_frame,… in evaluateScriptInMainWorld()
608 …const ScriptSourceCode& sourceCodeToCompile = maybeProcessedSourceCode ? *maybeProcessedSourceCode… in evaluateScriptInMainWorld()
619 void ScriptController::executeScriptInIsolatedWorld(int worldID, const Vector<ScriptSourceCode>& so… in executeScriptInIsolatedWorld()
DPageScriptDebugServer.cpp82 m_preprocessorSourceCode = adoptPtr(new ScriptSourceCode(preprocessorSource)); in setPreprocessorSource()
294 PassOwnPtr<ScriptSourceCode> PageScriptDebugServer::preprocess(LocalFrame* frame, const ScriptSourc… in preprocess()
297 return PassOwnPtr<ScriptSourceCode>(); in preprocess()
300 return adoptPtr(new ScriptSourceCode(preprocessedSource, sourceCode.url())); in preprocess()
DScriptDebugServer.h52 class ScriptSourceCode; variable
111 virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&);
DScriptPreprocessor.cpp47 ScriptPreprocessor::ScriptPreprocessor(const ScriptSourceCode& preprocessorSourceCode, LocalFrame* … in ScriptPreprocessor()
57 Vector<ScriptSourceCode> sources; in ScriptPreprocessor()
DV8ScriptRunner.h39 class ScriptSourceCode; variable
47 …static v8::Local<v8::Script> compileScript(const ScriptSourceCode&, v8::Isolate*, AccessControlSta…
DScheduledAction.h64 ScriptSourceCode m_code;
DScheduledAction.cpp106 … frame->script().executeScriptAndReturnValue(m_scriptState->context(), ScriptSourceCode(m_code)); in execute()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DPendingScript.cpp101 ScriptSourceCode PendingScript::getSource(const KURL& documentURL, bool& errorOccurred) const in getSource()
107 return ScriptSourceCode(m_streamer, resource()); in getSource()
108 return ScriptSourceCode(resource()); in getSource()
111 return ScriptSourceCode(m_element->textContent(), documentURL, startingPosition()); in getSource()
DScriptLoader.h35 class ScriptSourceCode; variable
50 void executeScript(const ScriptSourceCode&, double* compilationFinishTime = 0);
DPendingScript.h40 class ScriptSourceCode; variable
112 ScriptSourceCode getSource(const KURL& documentURL, bool& errorOccurred) const;
DScriptLoader.cpp247 executeScript(ScriptSourceCode(scriptContent(), scriptURL, position)); in prepareScript()
298 void ScriptLoader::executeScript(const ScriptSourceCode& sourceCode, double* compilationFinishTime) in executeScript()
376 executeScript(ScriptSourceCode(resource)); in execute()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DActivityLoggerTest.cpp81 Vector<ScriptSourceCode> sources; in executeScriptInIsolatedWorld()
82 sources.append(ScriptSourceCode(script)); in executeScriptInIsolatedWorld()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLScriptRunner.h44 class ScriptSourceCode; variable
DHTMLScriptRunner.cpp128ScriptSourceCode sourceCode = pendingScript.getSource(documentURLForScriptExecution(m_document), e… in executePendingScriptAndDispatchEvent()
332ScriptSourceCode sourceCode(script->textContent(), documentURLForScriptExecution(m_document), scri… in runScript()
/external/chromium_org/third_party/WebKit/Source/web/
DWebLocalFrameImpl.cpp706 frame()->script().executeScriptInMainWorld(ScriptSourceCode(source.code, source.url, position)); in executeScript()
715 Vector<ScriptSourceCode> sources; in executeScriptInIsolatedWorld()
718 sources.append(ScriptSourceCode(sourcesIn[i].code, sourcesIn[i].url, position)); in executeScriptInIsolatedWorld()
789 …return frame()->script().executeScriptInMainWorldAndReturnValue(ScriptSourceCode(source.code, sour… in executeScriptAndReturnValue()
798 Vector<ScriptSourceCode> sources; in executeScriptInIsolatedWorld()
802 sources.append(ScriptSourceCode(sourcesIn[i].code, sourcesIn[i].url, position)); in executeScriptInIsolatedWorld()
1804 …Value> result = frame()->script().executeScriptInMainWorldAndReturnValue(ScriptSourceCode(script)); in loadJavaScriptURL()

12