1 override of NextSibling
System.Private.Xml (1)
System\Xml\Dom\XmlLinkedNode.cs (1)
44
public override XmlNode?
NextSibling
126 references to NextSibling
Microsoft.AspNetCore.AzureAppServices.SiteExtension.Tests (4)
TransformTest.cs (4)
38
var sharedStoreElement = depsElement.
NextSibling
;
43
var startupAssembliesElement = sharedStoreElement.
NextSibling
;
69
var sharedStoreElement = depsElement.
NextSibling
;
74
var startupAssembliesElement = sharedStoreElement.
NextSibling
;
Microsoft.Build (1)
Xml\ProjectXmlUtilities.XmlElementChildIterator.cs (1)
105
child = child.
NextSibling
;
Microsoft.Build.Tasks.Core (6)
BootstrapperUtil\BootstrapperBuilder.cs (3)
1261
nextNode = nextNode.
NextSibling
;
1270
nextNode = nextNode.
NextSibling
;
2183
childNode = currentNode.
NextSibling
;
XamlTaskFactory\RelationsParser.cs (3)
258
node = node.
NextSibling
;
382
node = node.
NextSibling
;
529
child = child.
NextSibling
;
Microsoft.Web.Xdt.Extensions.Tests (4)
InsertOrAppendAttributeTests.cs (4)
31
var secondChild = firstChild.
NextSibling
;
55
var secondChild = firstChild.
NextSibling
;
79
var secondChild = firstChild.
NextSibling
;
103
var secondChild = firstChild.
NextSibling
;
ReachFramework (5)
PrintConfig\PrtTicket_Editor.cs (5)
124
rootChild = rootChild.
NextSibling
;
253
child = child.
NextSibling
;
285
child = child.
NextSibling
;
317
child = child.
NextSibling
;
343
child = child.
NextSibling
;
System.Data.Common (56)
System\Data\XDRSchema.cs (7)
50
for (XmlNode? n = schemaRoot.FirstChild; n != null; n = n.
NextSibling
)
109
else if (vn.
NextSibling
!= null)
110
vn = vn.
NextSibling
;
116
if (vn!.
NextSibling
!= null)
118
vn = vn.
NextSibling
;
162
for (XmlNode? n = typeNode.FirstChild; n != null; n = n.
NextSibling
)
525
for (XmlNode? n = typeNode.FirstChild; n != null; n = n.
NextSibling
)
System\Data\XmlDataLoader.cs (12)
101
for (XmlNode? n = parentElement.FirstChild; n != null; n = n.
NextSibling
)
144
n = n.
NextSibling
;
149
if (IsTextLikeNode(n.NodeType) && (n.
NextSibling
== null || !IsTextLikeNode(n.NodeType)))
160
n = n.
NextSibling
;
177
n = n.
NextSibling
!;
179
if (IsTextLikeNode(n.NodeType) && (n.
NextSibling
== null || !IsTextLikeNode(n.NodeType)))
183
n = n.
NextSibling
;
191
n = n.
NextSibling
;
226
for (XmlNode? tabNode = e.FirstChild; tabNode != null; tabNode = tabNode.
NextSibling
)
441
while (n != rowElement && n!.
NextSibling
== null)
447
n = n.
NextSibling
;
510
for (XmlNode? n = parentElement.FirstChild; n != null; n = n.
NextSibling
)
System\Data\xmlsaver.cs (2)
1212
for (XmlNode? n = schema.FirstChild; n != null; n = n.
NextSibling
)
1579
for (XmlNode? n = node.FirstChild; n != null; n = n.
NextSibling
)
System\Xml\DataPointer.cs (1)
668
for (n = _node.FirstChild; n != null; n = n.
NextSibling
)
System\Xml\DataSetMappper.cs (5)
136
for (XmlNode? n = elem.FirstChild; n != null; n = n.
NextSibling
)
279
if (fc == null || fc.NodeType != XmlNodeType.Text || fc.
NextSibling
!= null)
288
for (; n != null; n = n.
NextSibling
)
324
if (fc == null || fc.NodeType != XmlNodeType.Text || fc.
NextSibling
!= null)
331
for (; n != null; n = n.
NextSibling
)
System\Xml\RegionIterator.cs (9)
74
XmlNode? nextNode = _currentNode.
NextSibling
;
89
while (nextNode != _rowElement && nextNode!.
NextSibling
== null)
105
Debug.Assert(nextNode.
NextSibling
!= null);
106
_currentNode = nextNode.
NextSibling
;
171
n = n.
NextSibling
;
178
if (XmlDataDocument.Helpers.IsTextLikeNode(n) && (n.
NextSibling
== null || !XmlDataDocument.Helpers.IsTextLikeNode(n.
NextSibling
)))
182
n = n.
NextSibling
;
194
n = n.
NextSibling
;
System\Xml\TreeIterator.cs (4)
51
XmlNode? nextNode = _currentNode.
NextSibling
;
61
while (nextNode != _nodeTop && nextNode!.
NextSibling
== null)
72
Debug.Assert(nextNode.
NextSibling
!= null);
73
_currentNode = nextNode.
NextSibling
;
System\Xml\XmlBoundElement.cs (1)
146
sibling = child.
NextSibling
;
System\Xml\XmlDataDocument.cs (13)
141
for (XmlNode? child = node.FirstChild; child != null; child = child.
NextSibling
)
181
for (XmlNode? child = node.FirstChild; child != null; child = child.
NextSibling
)
428
XmlNode? next = node.
NextSibling
;
442
for (; node != null; node = node.
NextSibling
)
755
for (node = rowElement.FirstChild; node != null; prev = node, node = node.
NextSibling
)
761
for (; node != null; prev = node, node = node.
NextSibling
)
1312
for (XmlNode? child = node.FirstChild; child != null; child = child.
NextSibling
)
2303
nextSibling = child.
NextSibling
;
2307
nextSibling = child.
NextSibling
;
2319
XmlNode? sibling = node.
NextSibling
;
2331
n = n.
NextSibling
;
2339
RemoveInitialTextNodes(n!.
NextSibling
);
2364
return n.
NextSibling
;
System\Xml\XPathNodePointer.cs (2)
1209
nextNode = curNode1.
NextSibling
;
1297
for (n = _node.FirstChild; n != null; n = n.
NextSibling
)
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
1419
child = child.
NextSibling
;
System.Private.Xml (44)
System\Xml\Dom\DocumentSchemaValidator.cs (3)
278
for (XmlNode? child = node.FirstChild; child != null; child = child.
NextSibling
)
363
for (XmlNode? child = elementNode.FirstChild; child != null; child = child.
NextSibling
)
721
for (child = parentNode.FirstChild; child != null; child = child.
NextSibling
)
System\Xml\Dom\DocumentXmlWriter.cs (1)
473
DocumentXPathNavigator.DeleteToFollowingSibling(_start.
NextSibling
!, _end);
System\Xml\Dom\DocumentXPathNavigator.cs (9)
71
DeleteToFollowingSibling(node.
NextSibling
!, end);
1001
XmlNode? nextSibling = following.
NextSibling
;
1089
XmlNode? nextSibling = following.
NextSibling
;
1347
XmlNode? nextNode = node1.
NextSibling
;
1349
nextNode = nextNode.
NextSibling
;
1793
node = node.
NextSibling
!;
1941
XmlNode? sibling = node.
NextSibling
;
1961
sibling = current.
NextSibling
;
2060
currentLeft = currentLeft.
NextSibling
;
System\Xml\Dom\XmlAttribute.cs (1)
356
for (XmlNode? node = FirstChild; node != null; node = node.
NextSibling
)
System\Xml\Dom\XmlCharacterData.cs (1)
224
n = n.
NextSibling
;
System\Xml\Dom\XmlChildEnumerator.cs (1)
35
child = child.
NextSibling
;
System\Xml\Dom\XmlChildNodes.cs (2)
23
for (XmlNode? n = _container.FirstChild; n != null; n = n.
NextSibling
, i--)
37
for (XmlNode? n = _container.FirstChild; n != null; n = n.
NextSibling
)
System\Xml\Dom\XmlDocument.cs (6)
507
node = node.
NextSibling
;
521
node = node.
NextSibling
;
592
return !HasNodeTypeInNextSiblings(XmlNodeType.DocumentType, refChild.
NextSibling
);
1043
for (XmlNode? n = fromNode.FirstChild; n != null; n = n.
NextSibling
)
1448
n = n.
NextSibling
;
1458
n = n.
NextSibling
;
System\Xml\Dom\XmlElement.cs (2)
502
n = n.
NextSibling
;
526
for (XmlNode? node = FirstChild; node != null; node = node.
NextSibling
)
System\Xml\Dom\XmlElementList.cs (2)
118
&& retNode.
NextSibling
== null)
124
retNode = retNode.
NextSibling
;
System\Xml\Dom\XmlLinkedNode.cs (1)
27
XmlNode? nextSibling = node.
NextSibling
;
System\Xml\Dom\XmlLoader.cs (1)
856
child = child.
NextSibling
;
System\Xml\Dom\XmlNode.cs (12)
397
XmlNode? next = node.
NextSibling
;
481
XmlNode? nextNode = oldChild.
NextSibling
;
602
XmlNode? next = node.
NextSibling
;
720
for (XmlNode? child = container.FirstChild; child != null; child = child.
NextSibling
)
739
XmlNode? nextChild = crtChild.
NextSibling
;
902
for (XmlNode? child = FirstChild; child != null; child = child.
NextSibling
)
928
if (fc.
NextSibling
== null)
950
&& firstChild.
NextSibling
== null // and exactly one
1052
sibling = child.
NextSibling
;
1242
for (XmlNode? n = FirstChild; n != null; n = n.
NextSibling
)
1258
for (XmlNode? n = FirstChild; n != null; n = n.
NextSibling
)
1302
for (XmlNode? child = FirstChild; child != null; child = child.
NextSibling
)
System\Xml\Dom\XmlNodeReader.cs (2)
804
XmlNode? nextSibling = node.
NextSibling
;
1089
nextSibling = _curNode.
NextSibling
;
System.Security.Cryptography.Xml (5)
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
866
nextChild = child.
NextSibling
;
System\Security\Cryptography\Xml\KeyInfo.cs (1)
111
child = child.
NextSibling
;
System\Security\Cryptography\Xml\Utils.cs (1)
368
sibling = child.
NextSibling
;
System\Security\Cryptography\Xml\XmlDecryptionTransform.cs (2)
242
while (child != null && child.
NextSibling
!= sibling)
243
child = child.
NextSibling
;