39 references to GetNextNode
PresentationFramework (39)
System\Windows\Documents\TextContainer.cs (17)
641TextTreeTextNode nextTextNode = ((direction == LogicalDirection.Forward) ? node.GetNextNode() : node.GetPreviousNode()) as TextTreeTextNode; 855(position.Edge == ElementEdge.BeforeStart && position.Node.GetNextNode() is TextTreeTextNode && position.Node.GetNextNode().SymbolCount > 0)); 1068formerFirstIMEVisibleNode = (TextTreeTextElementNode)elementNode.GetNextNode(); 2082for (node = firstChildNode; node != null; node = node.GetNextNode()) 2174nextNode = textNode.GetNextNode(); 2187Invariant.Assert(nextNode.GetNextNode() == null || nextNode.GetNextNode().SymbolCount > 0, "Found three consecutive zero-width text nodes! (2)"); 2219nextNode = textNode.GetNextNode(); 2450nextNode = node.GetNextNode(); 2562node = (TextTreeNode)node.GetNextNode(); 2671rightSubTree = endPosition.Node.GetNextNode(); 2684middleSubTree = leftSubTree.GetNextNode(); 2855nextNode = (TextTreeTextElementNode)elementNode.GetNextNode(); 2993nextNode = (TextTreeNode)elementNode.GetNextNode(); 3164node = (TextTreeNode)node.GetNextNode(); 3287for (textBlock = (TextTreeTextBlock)_rootNode.RootTextBlock.ContainedNode.GetMinSibling(); textBlock != null; textBlock = (TextTreeTextBlock)textBlock.GetNextNode())
System\Windows\Documents\TextElement.cs (1)
1428TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode;
System\Windows\Documents\TextPointer.cs (10)
603textNode = ((direction == LogicalDirection.Forward) ? textNode.GetNextNode() : textNode.GetPreviousNode()) as TextTreeTextNode; 1799textNode = ((direction == LogicalDirection.Forward) ? textNode.GetNextNode() : textNode.GetPreviousNode()) as TextTreeTextNode; 2254newNode = _node.GetNextNode(); 2872sibling = node.GetNextNode(); 3161endedAdjacentToTextNode = newNode.GetNextNode() is TextTreeTextNode; 3179newNode = currentNode.GetNextNode(); 3194nextNode = currentNode.GetNextNode(); 3208endedAdjacentToTextNode = newNode.GetNextNode() is TextTreeTextNode; 3463nextNode = (TextTreeNode)node.GetNextNode(); 4042newNode = node.GetNextNode();
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (3)
235node = textNode.GetNextNode(); 263return (TextTreeNode)objectNode.GetNextNode(); 284return (TextTreeNode)elementNode.GetNextNode();
System\Windows\Documents\TextTreeDumper.cs (1)
172for (; node != null; node = node.GetNextNode())
System\Windows\Documents\TextTreeText.cs (4)
93firstBlock = (TextTreeTextBlock)firstBlock.GetNextNode(); 107firstRemoveBlock = firstBlock.GetNextNode(); 183block = (TextTreeTextBlock)block.GetNextNode(); 340neighborBlock = (TextTreeTextBlock)leftBlock.GetNextNode();
System\Windows\Documents\TextTreeTextNode.cs (3)
146mergeNode = node.GetNextNode() as TextTreeTextNode; 218nextNode = (TextTreeNode)GetNextNode(); 516nextNode = previousNode.GetNextNode() as TextTreeTextNode;