Home | History | Annotate | Download | only in dom2dtm

Lines Matching refs:identity

111    * @param dtmIdentity The DTM identity ID for this DTM.
180 * @return The index identity of the node that was added.
187 // Have we overflowed a DTM Identity's addressing range?
607 int identity = makeNodeIdentity(nodeHandle);
609 return (Node) m_nodes.elementAt(identity);
613 * Get a Node from an identity index.
625 * Get the next node identity value in the list, and call the iterator
628 * @param identity The node identity (index).
629 * @return identity+1, or DTM.NULL.
631 protected int getNextNodeIdentity(int identity)
634 identity += 1;
636 if (identity >= m_nodes.size())
639 identity = DTM.NULL;
642 return identity;
655 * %REVIEW% This relies on being able to test node-identity via
656 * object-identity. DTM2DOM proxying is a great example of a case where
695 * %REVIEW% This relies on being able to test node-identity via
696 * object-identity. DTM2DOM proxying is a great example of a case where
765 int identity = makeNodeIdentity(nodeHandle);
767 while (DTM.NULL != (identity = getNextNodeIdentity(identity)))
770 type = _type(identity);
781 Node node = lookupNode(identity);
790 return makeNodeHandle(identity);
1235 // identity. Inlined it.
1360 int identity = m_nodes.size()-1;
1361 while (DTM.NULL != (identity = getNextNodeIdentity(identity)))
1363 Node node = getNode(identity);