2 writes to _head
PresentationCore (2)
Core\CSharp\System\Windows\LayoutManager.cs (2)
888_head = r; 999if(entry.Prev == null) _head = entry.Next;
6 references to _head
PresentationCore (6)
Core\CSharp\System\Windows\LayoutManager.cs (6)
886r.Next = _head; 887if(_head != null) _head.Prev = r; 957Request r = _head; 975internal bool IsEmpty { get { return (_head == null); }} 982for(Request r = _head; r != null; r = r.Next)