Lines Matching full:node
34 #include "Node.h"
46 Node* operator[](unsigned i) const { return m_nodes.at(i).get(); }
52 void append(Node* node) { m_nodes.append(node); }
53 void append(PassRefPtr<Node> node) { m_nodes.append(node); }
56 // Returns the set's first node in document order, or 0 if the set is empty.
57 Node* firstNode() const;
60 Node* anyNode() const;
68 // 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.
77 Vector<RefPtr<Node> > m_nodes;