OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ContainerNode
(Results
1 - 25
of
234
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/chromium_org/third_party/WebKit/Source/core/dom/
Notation.h
25
#include "core/dom/
ContainerNode
.h"
29
class Notation : public
ContainerNode
{
31
Notation(TreeScope* treeScope) :
ContainerNode
(treeScope)
Entity.h
25
#include "core/dom/
ContainerNode
.h"
29
class Entity : public
ContainerNode
{
ParentNode.h
34
#include "core/dom/
ContainerNode
.h"
40
static PassRefPtr<HTMLCollection> children(
ContainerNode
* node)
45
static Element* firstElementChild(
ContainerNode
* node)
50
static Element* lastElementChild(
ContainerNode
* node)
55
static unsigned childElementCount(
ContainerNode
* node)
StyleSheetScopingNodeList.h
30
#include "core/dom/
ContainerNode
.h"
42
void add(
ContainerNode
*);
43
void remove(
ContainerNode
*);
NodeRenderingTraversal.h
62
ContainerNode
* parent(const Node*);
63
ContainerNode
* parent(const Node*, ParentDetails*);
67
inline
ContainerNode
* parent(const Node* node)
NodeRenderingContext.h
35
class
ContainerNode
;
68
ContainerNode
* m_renderingParent;
NodeTraversal.h
40
Node* next(const
ContainerNode
&);
41
Node* next(const
ContainerNode
&, const Node* stayWithin);
46
Node* nextSkippingChildren(const
ContainerNode
&);
47
Node* nextSkippingChildren(const
ContainerNode
&, const Node* stayWithin);
80
inline Node* next(const
ContainerNode
& current) { return traverseNextTemplate(current); }
94
inline Node* next(const
ContainerNode
& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); }
104
inline Node* nextSkippingChildren(const
ContainerNode
& current) { return traverseNextSkippingChildrenTemplate(current); }
116
inline Node* nextSkippingChildren(const
ContainerNode
& current, const Node* stayWithin) { return traverseNextSkippingChildrenTemplate(current, stayWithin); }
StyleElement.h
29
class
ContainerNode
;
49
void removedFromDocument(Document&, Element*,
ContainerNode
* scopingNode = 0);
StyleSheetScopingNodeList.cpp
36
void StyleSheetScopingNodeList::add(
ContainerNode
* node)
50
void StyleSheetScopingNodeList::remove(
ContainerNode
* node)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchRequest.h
30
class
ContainerNode
;
34
MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const
ContainerNode
* scope = 0, bool elementApplyAuthorStyles = true, unsigned styleSheetIndex = 0)
48
const
ContainerNode
* scope;
ScopedStyleTree.h
42
ScopedStyleResolver* ensureScopedStyleResolver(
ContainerNode
& scopingNode);
43
ScopedStyleResolver* lookupScopedStyleResolverFor(const
ContainerNode
* scopingNode)
45
HashMap<const
ContainerNode
*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.find(scopingNode);
49
ScopedStyleResolver* scopedStyleResolverFor(const
ContainerNode
& scopingNode);
50
ScopedStyleResolver* addScopedStyleResolver(
ContainerNode
& scopingNode, bool& isNewEntry);
62
void remove(const
ContainerNode
* scopingNode);
64
void pushStyleCache(const
ContainerNode
& scopingNode, const
ContainerNode
* parent);
65
void popStyleCache(const
ContainerNode
& scopingNode);
74
bool cacheIsValid(const
ContainerNode
* parent) const { return parent && parent == m_cache.nodeForScopedStyles;
[
all
...]
ElementResolveContext.h
31
class
ContainerNode
;
51
const
ContainerNode
* parentNode() const { return m_parentNode; }
59
ContainerNode
* m_parentNode;
ScopedStyleResolver.h
32
#include "core/dom/
ContainerNode
.h"
48
static PassOwnPtr<ScopedStyleResolver> create(
ContainerNode
& scopingNode) { return adoptPtr(new ScopedStyleResolver(scopingNode)); }
50
static
ContainerNode
* scopingNodeFor(Document&, const CSSStyleSheet*);
52
const
ContainerNode
& scopingNode() const { return m_scopingNode; }
70
explicit ScopedStyleResolver(
ContainerNode
& scopingNode) : m_scopingNode(scopingNode), m_parent(0) { }
74
ContainerNode
& m_scopingNode;
/external/chromium_org/third_party/WebKit/Source/core/css/
TreeBoundaryCrossingRules.h
35
class
ContainerNode
;
40
void addRule(StyleRule*, size_t selectorIndex,
ContainerNode
* scopingNode, AddRuleFlags);
42
void reset(const
ContainerNode
* scopingNode);
48
RuleSet* ruleSetScopedBy(const
ContainerNode
* scopingNode) { return m_treeBoundaryCrossingRuleSetMap.get(scopingNode); }
52
typedef HashMap<const
ContainerNode
*, OwnPtr<RuleSet> > TreeBoundaryCrossingRuleSetMap;
/external/chromium_org/third_party/WebKit/Source/core/editing/
AppendNodeCommand.h
35
static PassRefPtr<AppendNodeCommand> create(PassRefPtr<
ContainerNode
> parent, PassRefPtr<Node> node)
41
AppendNodeCommand(PassRefPtr<
ContainerNode
> parent, PassRefPtr<Node>);
46
RefPtr<
ContainerNode
> m_parent;
PlainTextRange.h
34
class
ContainerNode
;
51
PassRefPtr<Range> createRange(const
ContainerNode
& scope) const;
52
PassRefPtr<Range> createRangeForSelection(const
ContainerNode
& scope) const;
60
PassRefPtr<Range> createRangeFor(const
ContainerNode
& scope, GetRangeFor) const;
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGHKernElement.h
40
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
41
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
SVGTitleElement.h
35
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
36
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
SVGVKernElement.h
39
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
40
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
SVGMPathElement.h
51
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
52
void removedFrom(
ContainerNode
*);
59
void notifyParentOfPathChange(
ContainerNode
*);
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBaseElement.h
43
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
44
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
HTMLFormControlElementWithState.h
50
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
51
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
HTMLMapElement.h
50
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
51
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
HTMLSourceElement.h
50
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
51
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
HTMLTitleElement.h
39
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
40
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
Completed in 484 milliseconds
1
2
3
4
5
6
7
8
9
10