5 instantiations of Node
mscorlib (5)
system\Collections\Concurrent\ConcurrentStack.cs (5)
122
Node newNode = new
Node
(element);
154
Node currNode = new
Node
(m_serializationArray[i]);
357
Node newNode = new
Node
(item);
422
head = tail = new
Node
(items[startIndex]);
425
Node node = new
Node
(items[i]);
25 references to Node
mscorlib (25)
system\Collections\Concurrent\ConcurrentStack.cs (25)
63
internal
Node
m_next; // Next pointer.
79
private volatile
Node
m_head; // The stack is a singly linked list, and only remembers the head.
119
Node
lastNode = null;
122
Node
newNode = new Node(element);
150
Node
prevNode = null;
151
Node
head = null;
154
Node
currNode = new Node(m_serializationArray[i]);
218
for (
Node
curr = m_head; curr != null; curr = curr.m_next)
357
Node
newNode = new Node(item);
421
Node
head, tail;
425
Node
node = new Node(items[i]);
448
private void PushCore(
Node
head,
Node
tail)
522
Node
head = m_head;
549
Node
head = m_head;
632
Node
poppedHead;
650
Node
poppedNode;
673
private int TryPopCore(int count, out
Node
poppedHead)
679
Node
head;
680
Node
next;
737
private void CopyRemovedItems(
Node
head, T[] collection, int startIndex, int nodesCount)
739
Node
current = head;
784
Node
curr = m_head;
817
private IEnumerator<T> GetEnumerator(
Node
head)
819
Node
current = head;