Lines Matching refs:node

103    * Construct a XNodeSet object for one node.
144 * Get numeric value of the string conversion from a single node.
148 * @return numeric value of the string conversion from a single node.
160 * next node in the NodeSetDTM, or NAN if no node was found
165 int node = item(0);
166 return (node != DTM.NULL) ? getNumberFromNode(node) : Double.NaN;
174 * next node in the NodeSetDTM, or NAN if no node was found
178 int node = nextNode();
180 return (node != DTM.NULL) ? getNumberFromNode(node) : Double.NaN;
187 * @return True if there is a next node in the nodeset
198 * @return True if there is a next node in the nodeset
207 * Get the string conversion from a single node.
211 * @return the string conversion from a single node.
241 int node = item(0);
243 if(node != DTM.NULL)
245 m_dtmMgr.getDTM(node).dispatchCharactersEvents(node, ch, false);
253 * @return The document fragment node data or the empty string.
257 int node = item(0);
258 return (node != DTM.NULL) ? getStringFromNode(node) : XString.EMPTYSTRING;
276 * @return the string conversion from the next node in the nodeset
277 * or "" if there is no next node
281 int node = item(0);
282 return (node != DTM.NULL) ? getStringFromNode(node).toString() : "";
317 // int node;
319 // while (DTM.NULL != (node = nl.nextNode()))
321 // frag.appendChild(node, true, true);
350 // XNodeSet with cache and run m_iter to the end. You cannot get any node
486 // If both objects to be compared are node-sets, then the comparison
487 // will be true if and only if there is a node in the first node-set
488 // and a node in the second node-set such that the result of performing
491 // NOTE: If $x is bound to a node-set, then $x="foo"
493 // is true if and only if some node in $x has the string-value
548 // If one object to be compared is a node-set and the other is a boolean,
551 // converting the node-set to a boolean using the boolean function
562 // If one object to be compared is a node-set and the other is a number,
564 // node in the node-set such that the result of performing the
566 // converting the string-value of that node to a number using
570 int node;
572 while (DTM.NULL != (node = list1.nextNode()))
574 double num1 = getNumberFromNode(node);
589 int node;
591 while (DTM.NULL != (node = list1.nextNode()))
593 XMLString s1 = getStringFromNode(node);
608 // If one object to be compared is a node-set and the other is a
610 // is a node in the node-set such that the result of performing
611 // the comparison on the string-value of the node and the other
615 int node;
617 while (DTM.NULL != (node = list1.nextNode()))
619 XMLString s1 = getStringFromNode(node);