Home | History | Annotate | Download | only in ref

Lines Matching refs:top

110     int top = pos;		// Remember the root of this subtree
120 if (top == pos)
129 if ((DTM.NULL == pos) || (top == pos))
131 // %REVIEW% This condition isn't tested in traverse(pos,top)
153 * @param top Node in the tree where to end traversal.
154 * If top==DTM.NULL, run through end of document.
158 public void traverse(int pos, int top) throws org.xml.sax.SAXException
161 // if(top==DTM.NULL) top=0
173 if ((DTM.NULL != top) && top == pos)
182 if ((DTM.NULL == pos) || ((DTM.NULL != top) && (top == pos)))