Lines Matching refs:nodelist

69    * Create an empty nodelist.
92 // * given nodelist into it.
94 // * @param nodelist List of Nodes to be made members of the new set.
96 // public NodeSetDTM(NodeList nodelist)
101 // addNodes(nodelist);
108 * @param nodelist Set of Nodes to be made members of the new set.
110 public NodeSetDTM(NodeSetDTM nodelist)
114 m_manager = nodelist.getDTMManager();
115 m_root = nodelist.getRoot();
117 addNodes((DTMIterator) nodelist);
174 // Do not reorder or strip duplicate nodes from the given DOM nodelist
582 // * Copy NodeList members into this nodelist, adding in
585 // * @param nodelist List of nodes which should now be referenced by
590 // public void addNodes(NodeList nodelist)
596 // if (null != nodelist) // defensive to fix a bug that Sanjiva reported.
598 // int nChildren = nodelist.getLength();
602 // int obj = nodelist.item(i);
616 // * <p>Copy NodeList members into this nodelist, adding in
641 * Copy NodeList members into this nodelist, adding in
669 // * Copy NodeList members into this nodelist, adding in
672 // * @param nodelist List of nodes to be added
677 // public void addNodesInDocOrder(NodeList nodelist, XPathContext support)
683 // int nChildren = nodelist.getLength();
687 // int node = nodelist.item(i);
697 * Copy NodeList members into this nodelist, adding in
726 // * @param nodelist The nodelist to add.
734 // NodeList nodelist, XPathContext support)
742 // int node = nodelist.item(testIndex);
763 // boolean foundPrev = addNodesInDocOrder(0, i, testIndex, nodelist,
768 // addNodesInDocOrder(i, size() - 1, testIndex, nodelist, support);
1207 * @return True if the nodelist can be mutated.