2 writes to _cchLength
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (1)
842line._metrics._cchLength = Length;
Core\CSharp\MS\Internal\TextFormatting\TextMetrics.cs (1)
172_lastRun = fullText.CountText(_lscpLim, firstCharIndex, out _cchLength);
15 references to _cchLength
PresentationCore (15)
Core\CSharp\MS\Internal\TextFormatting\FullTextLine.cs (12)
833if (line._metrics._cchLength < Length) 836_cpFirst + line._metrics._cchLength, 837Length - line._metrics._cchLength, 1021TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1041if (characterHit.FirstCharacterIndex >= _cpFirst + _metrics._cchLength) 1181TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1274TextFormatterImp.VerifyCaretCharacterHit(characterHit, _cpFirst, _metrics._cchLength); 1551if(firstTextSourceCharacterIndex > _cpFirst + _metrics._cchLength - textLength) 1553textLength = (_cpFirst + _metrics._cchLength - firstTextSourceCharacterIndex); 2116int cchLeft = _metrics._cchLength; 2274return _cpFirst + _metrics._cchLength - characterHit.FirstCharacterIndex - characterHit.TrailingLength; 2775return _cpFirst + _metrics._cchLength;
Core\CSharp\MS\Internal\TextFormatting\TextMetrics.cs (3)
174Debug.Assert(_cchLength > 0); 197_cchDepend -= _cchLength; 355get { return _cchLength; }