OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptLoader
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.h
38
class
ScriptLoader
: private ResourceClient {
40
static PassOwnPtr<
ScriptLoader
> create(Element*, bool createdByParser, bool isEvaluated);
41
virtual ~
ScriptLoader
();
83
ScriptLoader
(Element*, bool createdByParser, bool isEvaluated);
113
ScriptLoader
* toScriptLoaderIfPossible(Element*);
115
inline PassOwnPtr<
ScriptLoader
>
ScriptLoader
::create(Element* element, bool createdByParser, bool isEvaluated)
117
return adoptPtr(new
ScriptLoader
(element, createdByParser, isEvaluated));
ScriptRunner.h
41
class
ScriptLoader
;
50
void queueScriptForExecution(
ScriptLoader
*, ResourcePtr<ScriptResource>, ExecutionType);
54
void notifyScriptReady(
ScriptLoader
*, ExecutionType);
55
void notifyScriptLoadError(
ScriptLoader
*, ExecutionType);
65
HashMap<
ScriptLoader
*, PendingScript> m_pendingAsyncScripts;
ScriptLoader.cpp
25
#include "core/dom/
ScriptLoader
.h"
55
ScriptLoader
::
ScriptLoader
(Element* element, bool parserInserted, bool alreadyStarted)
75
ScriptLoader
::~
ScriptLoader
()
80
void
ScriptLoader
::didNotifySubtreeInsertionsToDocument()
86
void
ScriptLoader
::childrenChanged()
92
void
ScriptLoader
::handleSourceAttribute(const String& sourceUrl)
100
void
ScriptLoader
::handleAsyncAttribute()
136
void
ScriptLoader
::dispatchErrorEvent(
[
all
...]
ScriptRunner.cpp
32
#include "core/dom/
ScriptLoader
.h"
54
void ScriptRunner::queueScriptForExecution(
ScriptLoader
*
scriptLoader
, ResourcePtr<ScriptResource> resource, ExecutionType executionType)
56
ASSERT(
scriptLoader
);
59
Element* element =
scriptLoader
->element();
67
m_pendingAsyncScripts.add(
scriptLoader
, PendingScript(element, resource.get()));
87
void ScriptRunner::notifyScriptReady(
ScriptLoader
*
scriptLoader
, ExecutionType executionType)
91
ASSERT(m_pendingAsyncScripts.contains(
scriptLoader
));
92
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"
42
, m_loader(
ScriptLoader
::create(this, wasInsertedByParser, alreadyStarted))
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGScriptElement.h
34
class
ScriptLoader
;
47
ScriptLoader
* loader() const { return m_loader.get(); }
94
OwnPtr<
ScriptLoader
> m_loader;
SVGScriptElement.cpp
30
#include "core/dom/
ScriptLoader
.h"
49
, 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"
133
if (
ScriptLoader
*
scriptLoader
= toScriptLoaderIfPossible(element.get())) {
137
scriptLoader
->dispatchErrorEvent();
140
if (
scriptLoader
->executePotentiallyCrossOriginScript(sourceCode))
278
ScriptLoader
*
scriptLoader
= toScriptLoaderIfPossible(script);
284
ASSERT(
scriptLoader
);
285
if (!
scriptLoader
)
298
scriptLoader
->prepareScript(scriptStartPosition)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp
47
#include "core/dom/
ScriptLoader
.h"
465
ScriptLoader
*
scriptLoader
= toScriptLoaderIfPossible(e.get());
466
ASSERT(
scriptLoader
);
472
scriptLoader
->dispatchErrorEvent();
474
if (
scriptLoader
->executePotentiallyCrossOriginScript(sourceCode))
475
scriptLoader
->dispatchLoadEvent();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk
119
third_party/WebKit/Source/core/dom/
ScriptLoader
.cpp \
webcore_dom.target.darwin-mips.mk
119
third_party/WebKit/Source/core/dom/
ScriptLoader
.cpp \
webcore_dom.target.darwin-x86.mk
119
third_party/WebKit/Source/core/dom/
ScriptLoader
.cpp \
webcore_dom.target.linux-arm.mk
119
third_party/WebKit/Source/core/dom/
ScriptLoader
.cpp \
webcore_dom.target.linux-mips.mk
119
third_party/WebKit/Source/core/dom/
ScriptLoader
.cpp \
webcore_dom.target.linux-x86.mk
119
third_party/WebKit/Source/core/dom/
ScriptLoader
.cpp \
Completed in 408 milliseconds