NodeSet            92 Source/core/rendering/HitTestResult.cpp     m_rectBasedTestResult = adoptPtr(other.m_rectBasedTestResult ? new NodeSet(*other.m_rectBasedTestResult) : 0);
NodeSet           113 Source/core/rendering/HitTestResult.cpp     m_rectBasedTestResult = adoptPtr(other.m_rectBasedTestResult ? new NodeSet(*other.m_rectBasedTestResult) : 0);
NodeSet           457 Source/core/rendering/HitTestResult.cpp         NodeSet& set = mutableRectBasedTestResult();
NodeSet           458 Source/core/rendering/HitTestResult.cpp         for (NodeSet::const_iterator it = other.m_rectBasedTestResult->begin(), last = other.m_rectBasedTestResult->end(); it != last; ++it)
NodeSet           463 Source/core/rendering/HitTestResult.cpp const HitTestResult::NodeSet& HitTestResult::rectBasedTestResult() const
NodeSet           466 Source/core/rendering/HitTestResult.cpp         m_rectBasedTestResult = adoptPtr(new NodeSet);
NodeSet           470 Source/core/rendering/HitTestResult.cpp HitTestResult::NodeSet& HitTestResult::mutableRectBasedTestResult()
NodeSet           473 Source/core/rendering/HitTestResult.cpp         m_rectBasedTestResult = adoptPtr(new NodeSet);
NodeSet           123 Source/core/rendering/HitTestResult.h     const NodeSet& rectBasedTestResult() const;
NodeSet           128 Source/core/rendering/HitTestResult.h     NodeSet& mutableRectBasedTestResult(); // See above.
NodeSet           144 Source/core/rendering/HitTestResult.h     mutable OwnPtr<NodeSet> m_rectBasedTestResult;
NodeSet           323 Source/core/xml/XPathFunctions.cpp         const NodeSet& nodes = a.toNodeSet();
NodeSet           335 Source/core/xml/XPathFunctions.cpp     NodeSet result;
NodeSet           650 Source/core/xml/XPathFunctions.cpp     const NodeSet& nodes = a.toNodeSet();
NodeSet           137 Source/core/xml/XPathNodeSet.cpp void NodeSet::sort() const
NodeSet           192 Source/core/xml/XPathNodeSet.cpp void NodeSet::traversalSort() const
NodeSet           232 Source/core/xml/XPathNodeSet.cpp void NodeSet::reverse()
NodeSet           246 Source/core/xml/XPathNodeSet.cpp Node* NodeSet::firstNode() const
NodeSet           255 Source/core/xml/XPathNodeSet.cpp Node* NodeSet::anyNode() const
NodeSet            38 Source/core/xml/XPathNodeSet.h         class NodeSet {
NodeSet            41 Source/core/xml/XPathNodeSet.h             NodeSet() : m_isSorted(true), m_subtreesAreDisjoint(false) { }
NodeSet            48 Source/core/xml/XPathNodeSet.h             void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); }
NodeSet            53 Source/core/xml/XPathNodeSet.h             void append(const NodeSet& nodeSet) { m_nodes.appendVector(nodeSet.m_nodes); }
NodeSet            56 Source/core/xml/XPathPath.cpp     NodeSet& nodes = v.modifiableNodeSet();
NodeSet            61 Source/core/xml/XPathPath.cpp         NodeSet newNodes;
NodeSet           111 Source/core/xml/XPathPath.cpp     NodeSet nodes;
NodeSet           119 Source/core/xml/XPathPath.cpp void LocationPath::evaluate(NodeSet& nodes) const
NodeSet           125 Source/core/xml/XPathPath.cpp         NodeSet newNodes;
NodeSet           139 Source/core/xml/XPathPath.cpp             NodeSet matches;
NodeSet           207 Source/core/xml/XPathPath.cpp     NodeSet& nodes = v.modifiableNodeSet();
NodeSet            61 Source/core/xml/XPathPath.h             void evaluate(NodeSet& nodes) const; // nodes is an input/output parameter
NodeSet           106 Source/core/xml/XPathPredicate.cpp         const NodeSet& lhsSet = lhs.toNodeSet();
NodeSet           111 Source/core/xml/XPathPredicate.cpp             const NodeSet& rhsSet = rhs.toNodeSet();
NodeSet           145 Source/core/xml/XPathPredicate.cpp         const NodeSet& rhsSet = rhs.toNodeSet();
NodeSet           232 Source/core/xml/XPathPredicate.cpp     NodeSet& resultSet = lhsResult.modifiableNodeSet();
NodeSet           233 Source/core/xml/XPathPredicate.cpp     const NodeSet& rhsNodes = rhs.toNodeSet();
NodeSet           155 Source/core/xml/XPathResult.cpp     const NodeSet& nodes = m_value.toNodeSet();
NodeSet           210 Source/core/xml/XPathResult.cpp     const NodeSet& nodes = m_value.toNodeSet();
NodeSet            86 Source/core/xml/XPathResult.h     XPath::NodeSet m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
NodeSet           117 Source/core/xml/XPathStep.cpp void Step::evaluate(Node* context, NodeSet& nodes) const
NodeSet           128 Source/core/xml/XPathStep.cpp         NodeSet newNodes;
NodeSet           239 Source/core/xml/XPathStep.cpp void Step::nodesInAxis(Node* context, NodeSet& nodes) const
NodeSet           101 Source/core/xml/XPathStep.h     void evaluate(Node* context, NodeSet&) const;
NodeSet           111 Source/core/xml/XPathStep.h     void nodesInAxis(Node* context, NodeSet&) const;
NodeSet            43 Source/core/xml/XPathValue.cpp const NodeSet& Value::toNodeSet() const
NodeSet            49 Source/core/xml/XPathValue.cpp         DEFINE_STATIC_LOCAL(NodeSet, emptyNodeSet, ());
NodeSet            56 Source/core/xml/XPathValue.cpp NodeSet& Value::modifiableNodeSet()
NodeSet            40 Source/core/xml/XPathValue.h             static PassRefPtr<ValueData> create(const NodeSet& nodeSet) { return adoptRef(new ValueData(nodeSet)); }
NodeSet            43 Source/core/xml/XPathValue.h             NodeSet m_nodeSet;
NodeSet            48 Source/core/xml/XPathValue.h             explicit ValueData(const NodeSet& nodeSet) : m_nodeSet(nodeSet) { }
NodeSet            63 Source/core/xml/XPathValue.h             Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {}
NodeSet            70 Source/core/xml/XPathValue.h             Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0),  m_data(ValueData::create()) { value.swap(m_data->m_nodeSet); }
NodeSet            79 Source/core/xml/XPathValue.h             const NodeSet& toNodeSet() const;
NodeSet            80 Source/core/xml/XPathValue.h             NodeSet& modifiableNodeSet();
NodeSet           509 Source/web/WebPluginContainerImpl.cpp     const HitTestResult::NodeSet& nodes = result.rectBasedTestResult();