7 writes to _bottomUndoIndex
PresentationFramework (7)
src\Framework\MS\Internal\Documents\UndoManager.cs (7)
87_bottomUndoIndex = 0; 481if (++_bottomUndoIndex == UndoLimit) 483_bottomUndoIndex = 0; 748_bottomUndoIndex = 0; 757_bottomUndoIndex = 0; 799_bottomUndoIndex = 0; 1160_bottomUndoIndex = 0;
10 references to _bottomUndoIndex
PresentationFramework (10)
src\Framework\MS\Internal\Documents\UndoManager.cs (10)
737if (_bottomUndoIndex != 0 && _topUndoIndex >= 0) 742if (_bottomUndoIndex > _topUndoIndex) 744for (i = _bottomUndoIndex; i < UndoLimit; i++) 751for (i=_bottomUndoIndex; i<=_topUndoIndex; i++) 912else if (_topUndoIndex == _bottomUndoIndex - 1 && PeekUndoStack() == null) 916else if (_topUndoIndex >= _bottomUndoIndex) 918count = _topUndoIndex - _bottomUndoIndex + 1; 922count = _topUndoIndex + (UndoLimit - _bottomUndoIndex) + 1; 962Invariant.Assert(_bottomUndoIndex == 0); 983Invariant.Assert(_bottomUndoIndex == 0);