2 writes to _currentTextSegment
PresentationFramework (2)
MS\Internal\Documents\HostedElements.cs (2)
38
_currentTextSegment
= 0;
123
_currentTextSegment
++;
10 references to _currentTextSegment
PresentationFramework (10)
MS\Internal\Documents\HostedElements.cs (10)
80
Debug.Assert(
_currentTextSegment
== 0);
93
else if (
_currentTextSegment
< _textSegments.Count)
97
Debug.Assert(((ITextPointer)_currentPosition).CompareTo(_textSegments[
_currentTextSegment
].Start) >= 0 &&
98
((ITextPointer)_currentPosition).CompareTo(_textSegments[
_currentTextSegment
].End) < 0);
106
while (
_currentTextSegment
< _textSegments.Count)
108
Debug.Assert(((ITextPointer)_currentPosition).CompareTo(_textSegments[
_currentTextSegment
].Start) >= 0);
109
while (((ITextPointer)_currentPosition).CompareTo(_textSegments[
_currentTextSegment
].End) < 0)
124
if (
_currentTextSegment
< _textSegments.Count)
127
if (_textSegments[
_currentTextSegment
].Start is TextPointer)
129
_currentPosition = new TextPointer(_textSegments[
_currentTextSegment
].Start as TextPointer);