OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:scriptElement
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/dom/
XMLDocumentParser.cpp
49
#include "
ScriptElement
.h"
353
ScriptElement
*
scriptElement
= toScriptElement(e.get());
354
ASSERT(
scriptElement
);
360
scriptElement
->dispatchErrorEvent();
362
scriptElement
->executeScript(sourceCode);
363
scriptElement
->dispatchLoadEvent();
XMLDocumentParserQt.cpp
51
#include "
ScriptElement
.h"
536
ScriptElement
*
scriptElement
= toScriptElement(newElement.get());
537
if (
scriptElement
)
584
ScriptElement
*
scriptElement
= toScriptElement(element);
585
if (!
scriptElement
) {
594
bool successfullyPrepared =
scriptElement
->prepareScript(m_scriptStartPosition,
ScriptElement
::AllowLegacyTypeInTypeAttribute);
597
if (!
scriptElement
->isScriptTypeSupported(ScriptElement::AllowLegacyTypeInTypeAttribute)
[
all
...]
xml_expat_tokenizer.cpp
500
Element*
scriptElement
= static_cast<Element*>(n);
504
scriptHref =
scriptElement
->getAttribute(srcAttr);
508
const AtomicString& charset =
scriptElement
->getAttribute(charsetAttr);
510
m_scriptElement =
scriptElement
;
521
for (Node* child =
scriptElement
->firstChild(); child; child = child->nextSibling()) {
XMLDocumentParserLibxml2.cpp
50
#include "
ScriptElement
.h"
821
ScriptElement
*
scriptElement
= toScriptElement(newElement.get());
822
if (
scriptElement
)
880
ScriptElement
*
scriptElement
= toScriptElement(element);
881
if (!
scriptElement
) {
890
bool successfullyPrepared =
scriptElement
->prepareScript(m_scriptStartPosition,
ScriptElement
::AllowLegacyTypeInTypeAttribute);
893
if (!
scriptElement
->isScriptTypeSupported(ScriptElement::AllowLegacyTypeInTypeAttribute)
[
all
...]
/external/webkit/Source/WebCore/html/parser/
HTMLScriptRunner.cpp
41
#include "
ScriptElement
.h"
137
if (
ScriptElement
*
scriptElement
= toScriptElement(element.get())) {
144
scriptElement
->executeScript(sourceCode);
167
bool HTMLScriptRunner::execute(PassRefPtr<Element>
scriptElement
, const TextPosition1& scriptStartPosition)
169
ASSERT(
scriptElement
);
175
runScript(
scriptElement
.get(), scriptStartPosition);
291
ScriptElement
*
scriptElement
= toScriptElement(script);
292
ASSERT(
scriptElement
);
[
all
...]
HTMLDocumentParser.cpp
205
RefPtr<Element>
scriptElement
= m_treeBuilder->takeScriptToProcess(scriptStartPosition);
209
return m_scriptRunner->execute(
scriptElement
.release(), scriptStartPosition);
Completed in 109 milliseconds