Lines Matching refs:node

96   /** The current previous node, needed only for construction time.
141 /** Data or qualified name values, one array element for each node. */
145 * This table holds the ID string to node associations, for
185 * CDATA_SECTION node currently being acumulated,
186 * or -1 if there is no text node in progress
243 * @param usePrevsib true if we want to build the previous sibling node array.
305 * Get the data or qualified name for the given node identity.
307 * @param identity The node identity.
495 * string-value of the given node (see http://www.w3.org/TR/xpath#data-model
496 * for the definition of a node's string-value). Multiple calls to the
500 * @param nodeHandle The node ID.
593 * Given a node handle, return its DOM-style node name. This will
596 * @param nodeHandle the id of the node.
597 * @return String Name of this node, which may be an empty string.
643 * Given a node handle, return the XPath node name. This should be
647 * @param nodeHandle the id of the node.
648 * @return String Name of this node, which may be an empty string.
684 * @param attributeHandle Must be a valid handle to an attribute node.
713 * Get the next node identity value in the list, and call the iterator
716 * @param identity The node identity (index).
738 * @param nodeHandle The node ID.
781 * @return The true if a next node is found or false if
865 * Construct the node map from the node.
872 * @param canHaveFirstChild true if the node can have a first child, false
875 * @return The index identity of the node that was added.
930 * Get a new DTM ID beginning at the specified node index.
931 * @param nodeIndex The node identity at which the new DTM ID will begin
980 * Store the source location of the current node. This method must be called
981 * as every node is added to the DTM or for no node.
1000 * Given a node handle, return its node value. This is mostly
1004 * @param nodeHandle The node id.
1005 * @return String Value of this node, or null if not
1006 * meaningful for this node type.
1043 * Given a node handle, return its XPath-style localname.
1047 * @param nodeHandle the id of the node.
1048 * @return String Local name of this node.
1058 * node (see [3.3 Unparsed Entities]). It returns the empty string if
1138 * Given a node handle, return the prefix used to map to the namespace.
1143 * @param nodeHandle the id of the node.
1144 * @return String prefix of this node's name, or "" if no explicit
1184 * Retrieves an attribute node by by qualified name and namespace URI.
1186 * @param nodeHandle int Handle of the node upon which to look up this attribute..
1191 * @return The attribute node handle with the specified name (
1233 * Given a node handle, return its DOM-style namespace URI
1234 * (As defined in Namespaces, this is the declared URI which this node's
1239 * @param nodeHandle the id of the node.
1240 * @return String URI value of this node's namespace, or null if no
1250 * Get the string-value of a node as a String object
1252 * for the definition of a node's string-value).
1254 * @param nodeHandle The node ID.
1256 * @return A string object that represents the string-value of the given node.
1327 * Determine if the string-value of a node is whitespace
1329 * @param nodeHandle The node Handle.
1331 * @return Return true if the given node is whitespace.
1509 * Set an ID string to node association in the ID table.
1521 * append the appropriate flavor of text/cdata node.
1540 // contained no characters. They should not result in a node.
1845 * each element (such as allocating a new tree node or writing
2015 * each element (such as finalising a tree node or writing
2067 * (such as adding the data to a node or buffer, or printing it to
2102 * whitespace (such as adding data to a node or buffer, or printing
2488 /** Retrieve the SourceLocator associated with a specific node.
2496 public SourceLocator getSourceLocatorFor(int node)
2501 node = makeNodeIdentity(node);
2505 m_sourceSystemId.elementAt(node),
2506 m_sourceLine.elementAt(node),
2507 m_sourceColumn.elementAt(node));