HomeSort by relevance Sort by last modified time
    Searched refs:ScriptLoader (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.h 38 class ScriptLoader FINAL : private ResourceClient {
40 static PassOwnPtr<ScriptLoader> create(Element*, bool createdByParser, bool isEvaluated);
41 virtual ~ScriptLoader();
76 ScriptLoader(Element*, bool createdByParser, bool isEvaluated);
105 ScriptLoader* toScriptLoaderIfPossible(Element*);
107 inline PassOwnPtr<ScriptLoader> ScriptLoader::create(Element* element, bool createdByParser, bool isEvaluated)
109 return adoptPtr(new ScriptLoader(element, createdByParser, isEvaluated));
ScriptRunner.h 42 class ScriptLoader;
54 void queueScriptForExecution(ScriptLoader*, ResourcePtr<ScriptResource>, ExecutionType);
58 void notifyScriptReady(ScriptLoader*, ExecutionType);
59 void notifyScriptLoadError(ScriptLoader*, ExecutionType);
73 HashMap<ScriptLoader*, PendingScript> m_pendingAsyncScripts;
ScriptLoader.cpp 25 #include "core/dom/ScriptLoader.h"
55 ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool alreadyStarted)
74 ScriptLoader::~ScriptLoader()
79 void ScriptLoader::didNotifySubtreeInsertionsToDocument()
85 void ScriptLoader::childrenChanged()
91 void ScriptLoader::handleSourceAttribute(const String& sourceUrl)
99 void ScriptLoader::handleAsyncAttribute()
134 void ScriptLoader::dispatchErrorEvent(
    [all...]
ScriptRunner.cpp 32 #include "core/dom/ScriptLoader.h"
49 void ScriptRunner::queueScriptForExecution(ScriptLoader* scriptLoader, ResourcePtr<ScriptResource> resource, ExecutionType executionType)
51 ASSERT(scriptLoader);
54 Element* element = scriptLoader->element();
62 m_pendingAsyncScripts.add(scriptLoader, PendingScript(element, resource.get()));
82 void ScriptRunner::notifyScriptReady(ScriptLoader* scriptLoader, ExecutionType executionType)
86 ASSERT(m_pendingAsyncScripts.contains(scriptLoader));
87 m_scriptsToExecuteSoon.append(m_pendingAsyncScripts.take(scriptLoader));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.h 32 class ScriptLoader;
46 ScriptLoader* loader() const { return m_loader.get(); }
74 OwnPtr<ScriptLoader> m_loader;
HTMLScriptElement.cpp 31 #include "core/dom/ScriptLoader.h"
41 , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted))
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGScriptElement.h 33 class ScriptLoader;
42 ScriptLoader* loader() const { return m_loader.get(); }
83 OwnPtr<ScriptLoader> m_loader;
SVGScriptElement.cpp 30 #include "core/dom/ScriptLoader.h"
38 , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted))
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp 34 #include "core/dom/ScriptLoader.h"
158 if (ScriptLoader* scriptLoader = toScriptLoaderIfPossible(element.get())) {
162 scriptLoader->dispatchErrorEvent();
165 scriptLoader->executeScript(sourceCode);
313 ScriptLoader* scriptLoader = toScriptLoaderIfPossible(script);
319 ASSERT(scriptLoader);
320 if (!scriptLoader)
323 ASSERT(scriptLoader->isParserInserted())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 42 #include "core/dom/ScriptLoader.h"
467 ScriptLoader* scriptLoader = toScriptLoaderIfPossible(e.get());
468 ASSERT(scriptLoader);
475 scriptLoader->dispatchErrorEvent();
477 scriptLoader->executeScript(sourceCode);
478 scriptLoader->dispatchLoadEvent();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.darwin-arm64.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.darwin-mips.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.darwin-x86.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.darwin-x86_64.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.linux-arm.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.linux-arm64.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.linux-mips.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.linux-x86.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \
webcore_dom.target.linux-x86_64.mk 117 third_party/WebKit/Source/core/dom/ScriptLoader.cpp \

Completed in 199 milliseconds