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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.h 39 class ContainerNode;
50 PassRefPtrWillBeRawPtr<StaticElementList> queryAll(ContainerNode& rootNode) const;
51 PassRefPtrWillBeRawPtr<Element> queryFirst(ContainerNode& rootNode) const;
54 bool canUseFastQuery(const ContainerNode& rootNode) const;
55 bool selectorMatches(const CSSSelector&, Element&, const ContainerNode&) const;
58 void collectElementsByClassName(ContainerNode& rootNode, const AtomicString& className, typename SelectorQueryTrait::OutputType&) const;
60 void collectElementsByTagName(ContainerNode& rootNode, const QualifiedName& tagName, typename SelectorQueryTrait::OutputType&) const;
63 void findTraverseRootsAndExecute(ContainerNode& rootNode, typename SelectorQueryTrait::OutputType&) const;
67 void executeForTraverseRoot(const CSSSelector&, ContainerNode* traverseRoot, MatchTraverseRootState, ContainerNode& rootNode, typename SelectorQueryTrait::OutputType&) const
    [all...]
ParentNode.h 34 #include "core/dom/ContainerNode.h"
42 static PassRefPtrWillBeRawPtr<HTMLCollection> children(ContainerNode& node)
47 static Element* firstElementChild(ContainerNode& node)
52 static Element* lastElementChild(ContainerNode& node)
57 static unsigned childElementCount(ContainerNode& node)
65 static PassRefPtrWillBeRawPtr<Element> querySelector(ContainerNode& node, const AtomicString& selectors, ExceptionState& exceptionState)
70 static PassRefPtrWillBeRawPtr<StaticElementList> querySelectorAll(ContainerNode& node, const AtomicString& selectors, ExceptionState& exceptionState)
NameNodeList.h 35 static PassRefPtrWillBeRawPtr<NameNodeList> create(ContainerNode& rootNode, CollectionType type, const AtomicString& name)
44 NameNodeList(ContainerNode& rootNode, const AtomicString& name);
ChildNodeList.h 28 #include "core/dom/ContainerNode.h"
37 static PassRefPtrWillBeRawPtr<ChildNodeList> create(ContainerNode& rootNode)
50 ContainerNode& ownerNode() const { return *m_parent; }
52 ContainerNode& rootNode() const { return ownerNode(); }
64 explicit ChildNodeList(ContainerNode& rootNode);
69 RefPtrWillBeMember<ContainerNode> m_parent;
NodeRenderingTraversal.h 58 ContainerNode* parent(const Node*, ParentDetails* = 0);
59 bool contains(const ContainerNode*, const Node*);
70 ContainerNode* found = parent(node);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementResolveContext.h 30 class ContainerNode;
44 const ContainerNode* parentNode() const { return m_parentNode; }
51 RawPtrWillBeMember<ContainerNode> m_parentNode;
MatchRequest.h 31 class ContainerNode;
36 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, unsigned styleSheetIndex = 0)
50 RawPtrWillBeMember<const ContainerNode> scope;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
AppendNodeCommand.h 35 static PassRefPtrWillBeRawPtr<AppendNodeCommand> create(PassRefPtrWillBeRawPtr<ContainerNode> parent, PassRefPtrWillBeRawPtr<Node> node)
43 AppendNodeCommand(PassRefPtrWillBeRawPtr<ContainerNode> parent, PassRefPtrWillBeRawPtr<Node>);
48 RefPtrWillBeMember<ContainerNode> m_parent;
PlainTextRange.h 35 class ContainerNode;
51 PassRefPtrWillBeRawPtr<Range> createRange(const ContainerNode& scope) const;
52 PassRefPtrWillBeRawPtr<Range> createRangeForSelection(const ContainerNode& scope) const;
54 static PlainTextRange create(const ContainerNode& scope, const Range&);
60 PassRefPtrWillBeRawPtr<Range> createRangeFor(const ContainerNode& scope, GetRangeFor) const;
SimplifyMarkupCommand.cpp 44 ContainerNode* rootNode = m_firstNode->parentNode();
45 WillBeHeapVector<RefPtrWillBeMember<ContainerNode> > nodesToRemove;
55 ContainerNode* startingNode = node->parentNode();
61 ContainerNode* currentNode = startingNode;
62 ContainerNode* topNodeWithStartingStyle = 0;
84 for (ContainerNode* node = startingNode; node != topNodeWithStartingStyle; node = node->parentNode())
100 int SimplifyMarkupCommand::pruneSubsequentAncestorsToRemove(WillBeHeapVector<RefPtrWillBeMember<ContainerNode> >& nodesToRemove, size_t startNodeIndex)
109 ContainerNode* highestAncestorToRemove = nodesToRemove[pastLastNodeToRemove - 1].get();
110 RefPtrWillBeRawPtr<ContainerNode> parent = highestAncestorToRemove->parentNode();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLNameCollection.h 36 HTMLNameCollection(ContainerNode&, CollectionType, const AtomicString& name);
HTMLBaseElement.h 43 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
44 virtual void removedFrom(ContainerNode*) OVERRIDE;
HTMLTitleElement.h 40 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
41 virtual void removedFrom(ContainerNode*) OVERRIDE;
LabelsNodeList.h 35 static PassRefPtrWillBeRawPtr<LabelsNodeList> create(ContainerNode& ownerNode, CollectionType type)
44 explicit LabelsNodeList(ContainerNode&);
HTMLPictureElement.h 23 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
HTMLShadowElement.h 49 virtual InsertionNotificationRequest insertedInto(ContainerNode* insertionPoint) OVERRIDE;
HTMLTagCollection.cpp 30 HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode, const AtomicString& localName)
HTMLAllCollection.h 36 static PassRefPtrWillBeRawPtr<HTMLAllCollection> create(ContainerNode&, CollectionType);
43 explicit HTMLAllCollection(ContainerNode&);
HTMLMapElement.h 51 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
52 virtual void removedFrom(ContainerNode*) OVERRIDE;
WindowNameCollection.h 14 static PassRefPtrWillBeRawPtr<WindowNameCollection> create(ContainerNode& document, CollectionType type, const AtomicString& name)
23 WindowNameCollection(ContainerNode& document, const AtomicString& name);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGHKernElement.h 41 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
42 virtual void removedFrom(ContainerNode*) OVERRIDE;
SVGTitleElement.h 36 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
37 virtual void removedFrom(ContainerNode*) OVERRIDE;
SVGVKernElement.h 40 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
41 virtual void removedFrom(ContainerNode*) OVERRIDE;
SVGMPathElement.h 50 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
51 virtual void removedFrom(ContainerNode*) OVERRIDE;
58 void notifyParentOfPathChange(ContainerNode*);
SVGGlyphElement.h 53 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
54 virtual void removedFrom(ContainerNode*) OVERRIDE;

Completed in 393 milliseconds

1 2 3 4 5 6 7 8 91011>>