m_nodeTest 67 Source/core/xml/XPathStep.cpp if ((!predicate->isContextPositionSensitive() || m_nodeTest.mergedPredicates().isEmpty()) && !predicate->isContextSizeSensitive() && remainingPredicates.isEmpty()) { m_nodeTest 68 Source/core/xml/XPathStep.cpp m_nodeTest.mergedPredicates().append(predicate.release()); m_nodeTest 81 Source/core/xml/XPathStep.cpp && first->m_nodeTest.kind() == Step::NodeTest::AnyNodeTest m_nodeTest 83 Source/core/xml/XPathStep.cpp && !first->m_nodeTest.mergedPredicates().size()) { m_nodeTest 85 Source/core/xml/XPathStep.cpp ASSERT(first->m_nodeTest.data().isEmpty()); m_nodeTest 86 Source/core/xml/XPathStep.cpp ASSERT(first->m_nodeTest.namespaceURI().isEmpty()); m_nodeTest 91 Source/core/xml/XPathStep.cpp first->m_nodeTest = Step::NodeTest(second->m_nodeTest.kind(), second->m_nodeTest.data(), second->m_nodeTest.namespaceURI()); m_nodeTest 92 Source/core/xml/XPathStep.cpp swap(second->m_nodeTest.mergedPredicates(), first->m_nodeTest.mergedPredicates()); m_nodeTest 108 Source/core/xml/XPathStep.cpp for (size_t i = 0; i < m_nodeTest.mergedPredicates().size(); ++i) { m_nodeTest 109 Source/core/xml/XPathStep.cpp Predicate* predicate = m_nodeTest.mergedPredicates()[i].get(); m_nodeTest 248 Source/core/xml/XPathStep.cpp if (nodeMatches(n, ChildAxis, m_nodeTest)) m_nodeTest 256 Source/core/xml/XPathStep.cpp if (nodeMatches(n, DescendantAxis, m_nodeTest)) m_nodeTest 262 Source/core/xml/XPathStep.cpp if (nodeMatches(n, ParentAxis, m_nodeTest)) m_nodeTest 266 Source/core/xml/XPathStep.cpp if (n && nodeMatches(n, ParentAxis, m_nodeTest)) m_nodeTest 274 Source/core/xml/XPathStep.cpp if (nodeMatches(n, AncestorAxis, m_nodeTest)) m_nodeTest 278 Source/core/xml/XPathStep.cpp if (nodeMatches(n, AncestorAxis, m_nodeTest)) m_nodeTest 288 Source/core/xml/XPathStep.cpp if (nodeMatches(n, FollowingSiblingAxis, m_nodeTest)) m_nodeTest 296 Source/core/xml/XPathStep.cpp if (nodeMatches(n, PrecedingSiblingAxis, m_nodeTest)) m_nodeTest 305 Source/core/xml/XPathStep.cpp if (nodeMatches(p, FollowingAxis, m_nodeTest)) m_nodeTest 311 Source/core/xml/XPathStep.cpp if (nodeMatches(n, FollowingAxis, m_nodeTest)) m_nodeTest 314 Source/core/xml/XPathStep.cpp if (nodeMatches(c, FollowingAxis, m_nodeTest)) m_nodeTest 327 Source/core/xml/XPathStep.cpp if (nodeMatches(n, PrecedingAxis, m_nodeTest)) m_nodeTest 341 Source/core/xml/XPathStep.cpp if (m_nodeTest.kind() == NodeTest::NameTest && m_nodeTest.data() != starAtom) { m_nodeTest 342 Source/core/xml/XPathStep.cpp RefPtr<Node> n = contextElement->getAttributeNodeNS(m_nodeTest.namespaceURI(), m_nodeTest.data()); m_nodeTest 344 Source/core/xml/XPathStep.cpp if (nodeMatches(n.get(), AttributeAxis, m_nodeTest)) // Still need to check merged predicates. m_nodeTest 356 Source/core/xml/XPathStep.cpp if (nodeMatches(attr.get(), AttributeAxis, m_nodeTest)) m_nodeTest 365 Source/core/xml/XPathStep.cpp if (nodeMatches(context, SelfAxis, m_nodeTest)) m_nodeTest 369 Source/core/xml/XPathStep.cpp if (nodeMatches(context, DescendantOrSelfAxis, m_nodeTest)) m_nodeTest 375 Source/core/xml/XPathStep.cpp if (nodeMatches(n, DescendantOrSelfAxis, m_nodeTest)) m_nodeTest 379 Source/core/xml/XPathStep.cpp if (nodeMatches(context, AncestorOrSelfAxis, m_nodeTest)) m_nodeTest 384 Source/core/xml/XPathStep.cpp if (nodeMatches(n, AncestorOrSelfAxis, m_nodeTest)) m_nodeTest 388 Source/core/xml/XPathStep.cpp if (nodeMatches(n, AncestorOrSelfAxis, m_nodeTest)) m_nodeTest 104 Source/core/xml/XPathStep.h const NodeTest& nodeTest() const { return m_nodeTest; } m_nodeTest 115 Source/core/xml/XPathStep.h NodeTest m_nodeTest;