Home | History | Annotate | Download | only in sax2dtm

Lines Matching defs:_stack

806     protected int[] _stack = new int[_maxAncestors];
837 final int[] stackCopy = new int[_stack.length];
838 System.arraycopy(_stack, 0, stackCopy, 0, _stack.length);
840 clone._stack = stackCopy;
875 _stack[index = 0] = node;
880 if (++index == _stack.length)
883 System.arraycopy(_stack, 0, stack, 0, index);
884 _stack = stack;
886 _stack[index] = parent;
892 _currentNode=_stack[index]; // Last parent before root node
914 if(_currentNode < _stack[_sp])
945 _markedDescendant = _stack[0];
994 else if (node >= _stack[_sp]) {
1015 else if (node >= _stack[_sp]) {