32 writes to next
dotnet-svcutil-lib (32)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (3)
179
newNode.
next
= newNode;
186
newNode.
next
= refNode.next;
187
refNode.
next
= newNode;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (3)
1740
newNode.
next
= newNode;
1744
newNode.
next
= _lastChild.next;
1745
_lastChild.
next
= newNode;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (3)
146
newNode.
next
= newNode;
153
newNode.
next
= refNode.next;
154
refNode.
next
= newNode;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLinkedNode.cs (2)
17
next
= null;
21
next
= null;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (21)
290
newNode.
next
= refNode;
291
LastNode.
next
= newNode;
306
newNode.
next
= refNode;
307
prevNode.
next
= newNode;
406
newNode.
next
= refNode.next;
407
refNode.
next
= newNode;
423
newNode.
next
= nextNode;
424
refNode.
next
= newNode;
497
oldNode.
next
= null;
512
lastNode.
next
= nextNode;
513
oldNode.
next
= null;
522
prevNode.
next
= oldNode.next;
524
oldNode.
next
= null;
547
prevNode.
next
= nextNode;
548
oldNode.
next
= null;
619
newNode.
next
= newNode;
625
newNode.
next
= refNode.next;
626
refNode.
next
= newNode;
658
newNode.
next
= newNode;
664
newNode.
next
= refNode.next;
665
refNode.
next
= newNode;
16 references to next
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
186
newNode.next = refNode.
next
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
1744
newNode.next = _lastChild.
next
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (3)
153
newNode.next = refNode.
next
;
595
linkedNode.
next
== linkedNode) // and it is the only child
614
return
next
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLinkedNode.cs (2)
56
if (
next
!= parent.FirstChild)
57
return
next
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (9)
133
node = node.
next
;
186
return linkedNode.
next
;
406
newNode.next = refNode.
next
;
421
XmlLinkedNode nextNode = refNode.
next
;
502
XmlLinkedNode nextNode = oldNode.
next
;
522
prevNode.next = oldNode.
next
;
530
XmlLinkedNode nextNode = oldNode.
next
;
625
newNode.next = refNode.
next
;
664
newNode.next = refNode.
next
;