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