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

/external/webkit/Source/WebCore/xml/
H A DXPathNodeSet.h43 NodeSet() : m_isSorted(true), m_subtreesAreDisjoint(false) { }
50 void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); }
64 void markSorted(bool isSorted) { m_isSorted = isSorted; }
65 bool isSorted() const { return m_isSorted || m_nodes.size() < 2; }
69 // No node in the set is ancestor of another. Unlike m_isSorted, this is assumed to be false, unless the caller sets it to true.
76 bool m_isSorted; member in class:WebCore::XPath::NodeSet

Completed in 294 milliseconds