/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XPathStep.cpp | 217 static inline bool nodeMatches(Node* node, Step::Axis axis, const Step::NodeTest& nodeTest) in nodeMatches() function 250 if (nodeMatches(n, ChildAxis, m_nodeTest)) in nodesInAxis() 258 if (nodeMatches(n, DescendantAxis, m_nodeTest)) in nodesInAxis() 264 if (nodeMatches(n, ParentAxis, m_nodeTest)) in nodesInAxis() 268 if (n && nodeMatches(n, ParentAxis, m_nodeTest)) in nodesInAxis() 276 if (nodeMatches(n, AncestorAxis, m_nodeTest)) in nodesInAxis() 280 if (nodeMatches(n, AncestorAxis, m_nodeTest)) in nodesInAxis() 291 if (nodeMatches(n, FollowingSiblingAxis, m_nodeTest)) in nodesInAxis() 300 if (nodeMatches(n, PrecedingSiblingAxis, m_nodeTest)) in nodesInAxis() 309 if (nodeMatches(p, FollowingAxis, m_nodeTest)) in nodesInAxis() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | TagNodeList.cpp | 48 bool TagNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::TagNodeList 63 bool HTMLTagNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::HTMLTagNodeList
|
D | TagNodeList.h | 53 virtual bool nodeMatches(Element*) const; 72 virtual bool nodeMatches(Element*) const OVERRIDE;
|
D | ChildNodeList.cpp | 41 bool ChildNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::ChildNodeList
|
D | NameNodeList.cpp | 45 bool NameNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::NameNodeList
|
D | ClassNodeList.cpp | 50 bool ClassNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::ClassNodeList
|
D | ChildNodeList.h | 44 virtual bool nodeMatches(Element*) const OVERRIDE;
|
D | NameNodeList.h | 47 virtual bool nodeMatches(Element*) const OVERRIDE;
|
D | ClassNodeList.h | 54 virtual bool nodeMatches(Element*) const OVERRIDE;
|
D | LiveNodeList.cpp | 76 if (element && nodeMatches(element) && element->isDescendantOf(&rootNode)) in namedItem()
|
D | LiveNodeList.h | 197 virtual bool nodeMatches(Element*) const = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | LabelsNodeList.cpp | 46 bool LabelsNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::LabelsNodeList
|
D | LabelsNodeList.h | 46 virtual bool nodeMatches(Element*) const;
|
D | RadioNodeList.h | 52 virtual bool nodeMatches(Element*) const OVERRIDE;
|
D | RadioNodeList.cpp | 99 bool RadioNodeList::nodeMatches(Element* testElement) const in nodeMatches() function in WebCore::RadioNodeList
|
D | HTMLCollection.cpp | 243 return nodeList->nodeMatches(element); in isMatchingElement()
|