OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ContainerNode
(Results
51 - 75
of
234
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentFragment.h
27
#include "core/dom/
ContainerNode
.h"
34
class DocumentFragment : public
ContainerNode
{
DocumentType.h
58
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
59
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
ProcessingInstruction.h
63
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
64
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
ContainerNodeAlgorithms.cpp
44
void ChildNodeInsertionNotifier::notifyDescendantInsertedIntoDocument(
ContainerNode
& node)
67
void ChildNodeInsertionNotifier::notifyDescendantInsertedIntoTree(
ContainerNode
& node)
78
void ChildNodeRemovalNotifier::notifyDescendantRemovedFromDocument(
ContainerNode
& node)
104
void ChildNodeRemovalNotifier::notifyDescendantRemovedFromTree(
ContainerNode
& node)
LiveNodeList.h
104
ContainerNode
* rootContainerNode() const;
138
Node* itemBeforeOrAfterCachedItem(unsigned offset,
ContainerNode
* root) const;
140
Element* traverseLiveNodeListFirstElement(
ContainerNode
& root) const;
141
Element* traverseLiveNodeListForwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset,
ContainerNode
* root) const;
/external/chromium_org/third_party/WebKit/Source/core/editing/
AppendNodeCommand.cpp
34
AppendNodeCommand::AppendNodeCommand(PassRefPtr<
ContainerNode
> parent, PassRefPtr<Node> node)
SplitTextNodeCommand.cpp
55
ContainerNode
* parent = m_text2->parentNode();
90
ContainerNode
* parent = m_text2->parentNode();
InsertNodeBeforeCommand.cpp
51
ContainerNode
* parent = m_refChild->parentNode();
PlainTextRange.cpp
30
#include "core/dom/
ContainerNode
.h"
60
PassRefPtr<Range> PlainTextRange::createRange(const
ContainerNode
& scope) const
65
PassRefPtr<Range> PlainTextRange::createRangeForSelection(const
ContainerNode
& scope) const
70
PassRefPtr<Range> PlainTextRange::createRangeFor(const
ContainerNode
& scope, GetRangeFor getRangeFor) const
81
TextIterator it(rangeOfContents(const_cast<
ContainerNode
*>(&scope)).get(), getRangeFor == ForSelection ? TextIteratorEmitsCharactersBetweenAllVisiblePositions : TextIteratorDefaultBehavior);
115
textRunRange->setEnd(runEnd.
containerNode
(), runEnd.computeOffsetInContainerNode(), ASSERT_NO_EXCEPTION);
ReplaceNodeWithSpanCommand.cpp
54
RefPtr<
ContainerNode
> parentNode = nodeToReplace.parentNode();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGGradientStop.cpp
69
ContainerNode
* parentNode = node()->parentNode();
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceUriElement.h
46
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
SVGStyleElement.h
55
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
57
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
SVGMPathElement.cpp
89
Node::InsertionNotificationRequest SVGMPathElement::insertedInto(
ContainerNode
* rootParent)
97
void SVGMPathElement::removedFrom(
ContainerNode
* rootParent)
163
void SVGMPathElement::notifyParentOfPathChange(
ContainerNode
* parent)
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBaseElement.cpp
55
Node::InsertionNotificationRequest HTMLBaseElement::insertedInto(
ContainerNode
* insertionPoint)
63
void HTMLBaseElement::removedFrom(
ContainerNode
* insertionPoint)
HTMLFormControlElementWithState.cpp
46
Node::InsertionNotificationRequest HTMLFormControlElementWithState::insertedInto(
ContainerNode
* insertionPoint)
53
void HTMLFormControlElementWithState::removedFrom(
ContainerNode
* insertionPoint)
HTMLTitleElement.cpp
50
Node::InsertionNotificationRequest HTMLTitleElement::insertedInto(
ContainerNode
* insertionPoint)
58
void HTMLTitleElement::removedFrom(
ContainerNode
* insertionPoint)
HTMLTrackElement.h
63
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
65
virtual void removedFrom(
ContainerNode
*) OVERRIDE;
HTMLStyleElement.cpp
99
ContainerNode
* scopingNode = 0;
147
ContainerNode
* scope = scoped ? parentNode() : containingShadowRoot();
160
void HTMLStyleElement::unregisterWithScopingNode(
ContainerNode
* scope)
175
Node::InsertionNotificationRequest HTMLStyleElement::insertedInto(
ContainerNode
* insertionPoint)
185
void HTMLStyleElement::removedFrom(
ContainerNode
* insertionPoint)
193
ContainerNode
* scope = 0;
239
ContainerNode
* HTMLStyleElement::scopingNode()
HTMLBodyElement.h
55
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
HTMLFrameElementBase.h
53
virtual InsertionNotificationRequest insertedInto(
ContainerNode
*) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h
56
ContainerNode
* oldParent()
65
RefPtr<
ContainerNode
> parent;
169
ContainerNode
* currentNode() const { return m_openElements.topNode(); }
214
void attachLater(
ContainerNode
* parent, PassRefPtr<Node> child, bool selfClosing = false);
229
// This is the root
ContainerNode
to which the parser attaches all newly
232
ContainerNode
* m_attachmentRoot;
247
void append(PassRefPtr<
ContainerNode
> newParent, PassRefPtr<Node> newNextChild, const String& newString, WhitespaceMode newWhitespaceMode)
280
RefPtr<
ContainerNode
> parent;
HTMLStackItem.h
40
class
ContainerNode
;
50
static PassRefPtr<HTMLStackItem> create(PassRefPtr<
ContainerNode
> node, ItemType type)
56
static PassRefPtr<HTMLStackItem> create(PassRefPtr<
ContainerNode
> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI)
62
ContainerNode
* node() const { return m_node.get(); }
212
HTMLStackItem(PassRefPtr<
ContainerNode
> node, ItemType type)
227
HTMLStackItem(PassRefPtr<
ContainerNode
> node, AtomicHTMLToken* token, const AtomicString& namespaceURI = HTMLNames::xhtmlNamespaceURI)
236
RefPtr<
ContainerNode
> m_node;
/external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h
38
class
ContainerNode
;
86
const
ContainerNode
* scope;
125
static bool isHostInItsShadowTree(const Element&, BehaviorAtBoundary, const
ContainerNode
* scope);
181
inline bool SelectorChecker::isHostInItsShadowTree(const Element& element, BehaviorAtBoundary behaviorAtBoundary, const
ContainerNode
* scope)
SelectorFilter.h
49
bool parentStackIsConsistent(const
ContainerNode
* parentNode) const { return !m_parentStack.isEmpty() && m_parentStack.last().element == parentNode; }
Completed in 182 milliseconds
1
2
3
4
5
6
7
8
9
10