1 write to _list
PresentationFramework (1)
src\Framework\System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
653
_list
= new List<KeyValuePair<object, T>>();
14 references to _list
PresentationFramework (14)
src\Framework\System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (14)
594
if (
_list
!= null)
595
_list
.Clear();
614
if (
_list
== null)
617
for (int i = 0; i <
_list
.Count; i++)
619
KeyValuePair<object, T> pair =
_list
[i];
652
if (
_list
== null)
655
_list
.Add(new KeyValuePair<object, T>(item, value));
675
if (
_list
!= null)
678
for (i = 0; i <
_list
.Count; i++)
680
KeyValuePair<object, T> pair =
_list
[i];
684
if(i <
_list
.Count)
686
_list
.RemoveAt(i);
727
if(
_list
== null)
729
foreach(KeyValuePair<object, T> keyValuePair in
_list
)