HomeSort by relevance Sort by last modified time
    Searched refs:ContainerNode (Results 151 - 175 of 284) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.cpp 45 explicit DistributionPool(const ContainerNode&);
49 void populateChildren(const ContainerNode&);
57 inline DistributionPool::DistributionPool(const ContainerNode& parent)
69 inline void DistributionPool::populateChildren(const ContainerNode& parent)
ShadowRoot.cpp 76 // We cannot let ContainerNode destructor call willBeDeletedFromDocument()
78 // clears Node::m_treeScope thus ContainerNode is no longer able
155 Node::InsertionNotificationRequest ShadowRoot::insertedInto(ContainerNode* insertionPoint)
176 void ShadowRoot::removedFrom(ContainerNode* insertionPoint)
192 ContainerNode::childrenChanged(change);
InsertionPoint.cpp 197 Node::InsertionNotificationRequest InsertionPoint::insertedInto(ContainerNode* insertionPoint)
215 void InsertionPoint::removedFrom(ContainerNode* insertionPoint)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MergeIdenticalElementsCommand.cpp 69 ContainerNode* parent = m_element2->parentNode();
ReplaceSelectionCommand.h 95 void moveElementOutOfAncestor(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<ContainerNode> ancestor);
SplitElementCommand.cpp 58 ContainerNode* parent = m_element2->parentNode();
htmlediting.cpp 79 TreeScope* commonScope = commonTreeScope(a.containerNode(), b.containerNode());
85 Node* nodeA = commonScope->ancestorInThisScope(a.containerNode());
87 bool hasDescendentA = nodeA != a.containerNode();
90 Node* nodeB = commonScope->ancestorInThisScope(b.containerNode());
92 bool hasDescendentB = nodeB != b.containerNode();
117 ContainerNode* highestEditableRoot(const Position& position, EditableType editableType)
122 ContainerNode* highestRoot = editableRootForPosition(position, editableType);
129 ContainerNode* node = highestRoot->parentNode();
191 Node* node = p.containerNode();
    [all...]
markup.cpp 138 void wrapWithNode(ContainerNode&, bool convertBlocksToInlines = false, RangeFullySelectsNode = DoesFullySelectNode);
174 void StyledMarkupAccumulator::wrapWithNode(ContainerNode& node, bool convertBlocksToInlines, RangeFullySelectsNode rangeFullySelectsNode)
368 WillBeHeapVector<RawPtrWillBeMember<ContainerNode> > ancestorsToClose;
413 ContainerNode* ancestor = ancestorsToClose.last();
425 ContainerNode* nextParent = next ? next->parentNode() : 0;
428 for (ContainerNode* parent = lastAncestorClosedOrSelf->parentNode(); parent && parent != nextParent; parent = parent->parentNode()) {
529 ContainerNode* ancestor = parentListNode->parentNode();
608 for (ContainerNode* ancestor = lastClosed->parentNode(); ancestor; ancestor = ancestor->parentNode()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.h 109 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
HTMLTablePartElement.cpp 92 ContainerNode* parent = NodeRenderingTraversal::parent(this);
RadioNodeList.cpp 42 RadioNodeList::RadioNodeList(ContainerNode& rootNode, const AtomicString& name, CollectionType type)
HTMLOptionElement.cpp 318 ContainerNode* parent = parentNode();
333 Node::InsertionNotificationRequest HTMLOptionElement::insertedInto(ContainerNode* insertionPoint)
351 void HTMLOptionElement::removedFrom(ContainerNode* insertionPoint)
HTMLDialogElement.cpp 168 void HTMLDialogElement::removedFrom(ContainerNode* insertionPoint)
HTMLTableRowElement.cpp 61 ContainerNode* table = parentNode();
HTMLTextFormControlElement.h 58 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.h 41 class ContainerNode;
130 void nodeChildrenChanged(ContainerNode*);
131 void nodeChildrenWillBeRemoved(ContainerNode&);
TreeWalker.cpp 30 #include "core/dom/ContainerNode.h"
97 ContainerNode* parent = node->parentNode();
130 ContainerNode* parent = node->parentNode();
239 ContainerNode* parent = node->parentNode();
Element.h 33 #include "core/dom/ContainerNode.h"
82 class Element : public ContainerNode {
222 bool hasTagName(const HTMLQualifiedName& tagName) const { return ContainerNode::hasTagName(tagName); }
223 bool hasTagName(const SVGQualifiedName& tagName) const { return ContainerNode::hasTagName(tagName); }
503 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
504 virtual void removedFrom(ContainerNode*) OVERRIDE;
672 ContainerNode* parent = parentNode();
775 inline Node::InsertionNotificationRequest Node::insertedInto(ContainerNode* insertionPoint)
789 inline void Node::removedFrom(ContainerNode* insertionPoint)
    [all...]
NodeRenderingTraversal.cpp 55 ContainerNode* parent(const Node* node, ParentDetails* details)
65 bool contains(const ContainerNode* container, const Node* node)
ProcessingInstruction.cpp 250 Node::InsertionNotificationRequest ProcessingInstruction::insertedInto(ContainerNode* insertionPoint)
268 void ProcessingInstruction::removedFrom(ContainerNode* insertionPoint)
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp 228 SelectorChecker::Match SelectorChecker::matchForPseudoShadow(const ContainerNode* node, const SelectorCheckingContext& context, const SiblingTraversalStrategy& siblingTraversalStrategy, MatchResult* result) const
294 if (ContainerNode* parent = context.element->parentElementOrShadowRoot())
310 if (ContainerNode* parent = context.element->parentElementOrShadowRoot())
589 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) {
602 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) {
611 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) {
624 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) {
633 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) {
650 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) {
663 if (ContainerNode* parent = element.parentElementOrDocumentFragment())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolverState.h 56 const ContainerNode* parentNode() const { return m_elementContext.parentNode(); }
StyleResolver.h 50 class ContainerNode;
131 void processScopedRules(const RuleSet& authorRules, CSSStyleSheet*, unsigned sheetIndex, ContainerNode& scope);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
PickerIndicatorElement.cpp 174 Node::InsertionNotificationRequest PickerIndicatorElement::insertedInto(ContainerNode* insertionPoint)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFilterPrimitiveStandardAttributes.cpp 140 ContainerNode* parent = element->parentNode();

Completed in 1928 milliseconds

1 2 3 4 5 67 8 91011>>