20 references to _list
Microsoft.VisualStudio.TestPlatform.Common (20)
Utilities\SimpleJSON.cs (20)
728
public override Enumerator GetEnumerator() { return new Enumerator(
_list
.GetEnumerator()); }
734
return aIndex < 0 || aIndex >=
_list
.Count ? new JSONLazyCreator(this) :
_list
[aIndex];
740
if (aIndex < 0 || aIndex >=
_list
.Count)
741
_list
.Add(value);
743
_list
[aIndex] = value;
754
_list
.Add(value);
760
get { return
_list
.Count; }
767
_list
.Add(aItem);
772
if (aIndex < 0 || aIndex >=
_list
.Count)
774
JSONNode tmp =
_list
[aIndex];
775
_list
.RemoveAt(aIndex);
781
_list
.Remove(aNode);
787
_list
.Clear();
793
node.
_list
.Capacity =
_list
.Capacity;
794
foreach (var n in
_list
)
808
foreach (JSONNode n in
_list
)
817
int count =
_list
.Count;
829
_list
[i].WriteToStringBuilder(aSB, aIndent + aIndentInc, aIndentInc, aMode);