Home
last modified time | relevance | path

Searched refs:nodeMatches (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathStep.cpp217 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/
DTagNodeList.cpp48 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
DTagNodeList.h53 virtual bool nodeMatches(Element*) const;
72 virtual bool nodeMatches(Element*) const OVERRIDE;
DChildNodeList.cpp41 bool ChildNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::ChildNodeList
DNameNodeList.cpp45 bool NameNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::NameNodeList
DClassNodeList.cpp50 bool ClassNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::ClassNodeList
DChildNodeList.h44 virtual bool nodeMatches(Element*) const OVERRIDE;
DNameNodeList.h47 virtual bool nodeMatches(Element*) const OVERRIDE;
DClassNodeList.h54 virtual bool nodeMatches(Element*) const OVERRIDE;
DLiveNodeList.cpp76 if (element && nodeMatches(element) && element->isDescendantOf(&rootNode)) in namedItem()
DLiveNodeList.h197 virtual bool nodeMatches(Element*) const = 0;
/external/chromium_org/third_party/WebKit/Source/core/html/
DLabelsNodeList.cpp46 bool LabelsNodeList::nodeMatches(Element* testNode) const in nodeMatches() function in WebCore::LabelsNodeList
DLabelsNodeList.h46 virtual bool nodeMatches(Element*) const;
DRadioNodeList.h52 virtual bool nodeMatches(Element*) const OVERRIDE;
DRadioNodeList.cpp99 bool RadioNodeList::nodeMatches(Element* testElement) const in nodeMatches() function in WebCore::RadioNodeList
DHTMLCollection.cpp243 return nodeList->nodeMatches(element); in isMatchingElement()