HomeSort by relevance Sort by last modified time
    Searched defs:NodeSet (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 8 class NodeSet implements NodeList {
12 public NodeSet(Iterator<Node> nodes) {
  /external/webkit/WebCore/xml/
XPathNodeSet.h 40 class NodeSet : public FastAllocBase {
42 NodeSet() : m_isSorted(true), m_subtreesAreDisjoint(false) { }
49 void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); }
51 // NodeSet itself does not verify that nodes in it are unique.
54 void append(const NodeSet& nodeSet) { m_nodes.append(nodeSet.m_nodes); }
62 // NodeSet itself doesn't check if it contains nodes in document order - the caller should tell it if it does not.
  /libcore/luni/src/main/java/org/apache/xpath/
NodeSet.java 19 * $Id: NodeSet.java 468655 2006-10-28 07:12:06Z minchau $
36 * <p>The NodeSet class can act as either a NodeVector,
52 * <p>Thought: Should NodeSet really implement NodeList and NodeIterator,
59 public class NodeSet
66 public NodeSet()
77 public NodeSet(int blocksize)
84 * Create a NodeSet, and copy the members of the
89 public NodeSet(NodeList nodelist)
98 * Create a NodeSet, and copy the members of the
99 * given NodeSet into it
    [all...]

Completed in 63 milliseconds