OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TreeScope
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/dom/
TreeScope.cpp
27
#include "
TreeScope
.h"
39
TreeScope
::
TreeScope
(Document* document, ConstructionType constructionType)
54
TreeScope
::~
TreeScope
()
60
void
TreeScope
::destroyTreeScopeData()
67
void
TreeScope
::setParentTreeScope(
TreeScope
* newParentScope)
78
Element*
TreeScope
::getElementById(const AtomicString& elementId) const
85
void
TreeScope
::addElementById(const AtomicString& elementId, Element* element
[
all
...]
TreeScope.h
37
class
TreeScope
: public ContainerNode {
41
TreeScope
* parentTreeScope() const { return m_parentTreeScope; }
68
TreeScope
(Document*, ConstructionType = CreateContainer);
70
virtual ~
TreeScope
();
74
void setParentTreeScope(
TreeScope
*);
77
TreeScope
* m_parentTreeScope;
88
inline bool
TreeScope
::hasElementWithId(AtomicStringImpl* id) const
94
inline bool
TreeScope
::containsMultipleElementsWithId(const AtomicString& id) const
DocumentOrderedMap.h
41
class
TreeScope
;
52
Element* getElementById(AtomicStringImpl*, const
TreeScope
*) const;
53
Element* getElementByMapName(AtomicStringImpl*, const
TreeScope
*) const;
54
Element* getElementByLowercasedMapName(AtomicStringImpl*, const
TreeScope
*) const;
59
template<bool keyMatches(AtomicStringImpl*, Element*)> Element* get(AtomicStringImpl*, const
TreeScope
*) const;
NodeRareData.h
37
class
TreeScope
;
103
TreeScope
*
treeScope
() const { return m_treeScope; }
104
void setTreeScope(
TreeScope
*
treeScope
) { m_treeScope =
treeScope
; }
132
TreeScope
* m_treeScope;
DocumentOrderedMap.cpp
37
#include "
TreeScope
.h"
108
inline Element* DocumentOrderedMap::get(AtomicStringImpl* key, const
TreeScope
* scope) const
136
Element* DocumentOrderedMap::getElementById(AtomicStringImpl* key, const
TreeScope
* scope) const
141
Element* DocumentOrderedMap::getElementByMapName(AtomicStringImpl* key, const
TreeScope
* scope) const
146
Element* DocumentOrderedMap::getElementByLowercasedMapName(AtomicStringImpl* key, const
TreeScope
* scope) const
Node.h
78
class
TreeScope
;
96
friend class
TreeScope
;
367
TreeScope
*
treeScope
() const;
371
void setTreeScope(
TreeScope
*);
374
void setTreeScopeRecursively(
TreeScope
*);
Document.h
40
#include "
TreeScope
.h"
205
class Document : public
TreeScope
, public ScriptExecutionContext {
219
using
TreeScope
::ref;
220
using
TreeScope
::deref;
[
all
...]
Node.cpp
474
TreeScope
* Node::
treeScope
() const
478
TreeScope
* scope = rareData()->
treeScope
();
484
void Node::setTreeScope(
TreeScope
* newTreeScope)
488
ASSERT(!inDocument() ||
treeScope
() == newTreeScope);
504
void Node::setTreeScopeRecursively(
TreeScope
* newTreeScope)
508
if (
treeScope
() == newTreeScope)
[
all
...]
Document.cpp
385
:
TreeScope
(this)
625
return
TreeScope
::getElementById(id);
695
TreeScope
::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
[
all
...]
/external/webkit/Source/WebCore/
Android.mk
206
dom/
TreeScope
.cpp \
[
all
...]
Completed in 195 milliseconds