Searched refs:m_isSorted (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathNodeSet.h49 void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); }
63 void markSorted(bool isSorted) { m_isSorted = isSorted; }
64 bool isSorted() const { return m_isSorted || m_nodes.size() < 2; }
68 // No node in the set is ancestor of another. Unlike m_isSorted, this is
76 NodeSet() : m_isSorted(true), m_subtreesAreDisjoint(false) { }
79 bool m_isSorted; member in class:WebCore::XPath::NodeSet
H A DXPathNodeSet.cpp47 nodeSet->m_isSorted = other.m_isSorted;
158 if (m_isSorted)
163 const_cast<bool&>(m_isSorted) = true;

Completed in 142 milliseconds