Home | History | Annotate | Download | only in xml

Lines Matching refs:NodeSet

44 PassOwnPtrWillBeRawPtr<NodeSet> NodeSet::create(const NodeSet& other)
46 OwnPtrWillBeRawPtr<NodeSet> nodeSet = NodeSet::create();
47 nodeSet->m_isSorted = other.m_isSorted;
48 nodeSet->m_subtreesAreDisjoint = other.m_subtreesAreDisjoint;
49 nodeSet->m_nodes.appendVector(other.m_nodes);
50 return nodeSet.release();
156 void NodeSet::sort() const
212 void NodeSet::traversalSort() const
250 void NodeSet::reverse()
264 Node* NodeSet::firstNode() const
275 Node* NodeSet::anyNode() const