Home | History | Annotate | Download | only in ref

Lines Matching refs:_stack

1247     protected int[] _stack = new int[_maxAncestors];
1278 final int[] stackCopy = new int[_stack.length];
1279 System.arraycopy(_stack, 0, stackCopy, 0, _stack.length);
1281 clone._stack = stackCopy;
1316 _stack[index = 0] = node;
1323 if (++index == _stack.length)
1326 System.arraycopy(_stack, 0, stack, 0, index);
1327 _stack = stack;
1329 _stack[index] = parent;
1334 _currentNode=_stack[index]; // Last parent before root node
1358 if(_currentNode < _stack[_sp])
1389 _markedDescendant = _stack[0];
1437 } else if (node >= _stack[_sp]) {
1455 } else if (node >= _stack[_sp]) {