1 write to _runs
PresentationCore (1)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
341
_runs
= new SimpleRun[count];
26 references to _runs
PresentationCore (26)
MS\Internal\TextFormatting\SimpleTextLine.cs (26)
352
_runs
[i] = run;
461
foreach(SimpleRun run in
_runs
)
587
if (
_runs
.Length <= 0)
606
foreach (SimpleRun run in
_runs
)
667
for(int i = 0; i <
_runs
.Length; i++)
669
run = (SimpleRun)
_runs
[i];
844
foreach(SimpleRun run in
_runs
)
898
TextSpan<TextRun>[] textRunSpans = new TextSpan<TextRun>[
_runs
.Length];
900
for (int i = 0; i <
_runs
.Length; i++)
902
textRunSpans[i] = new TextSpan<TextRun>(
_runs
[i].Length,
_runs
[i].TextRun);
914
List<IndexedGlyphRun> indexedGlyphRuns = new List<IndexedGlyphRun>(
_runs
.Length);
920
foreach(SimpleRun run in
_runs
)
1215
while (runIndex <
_runs
.Length)
1219
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1225
cpRunStart +=
_runs
[runIndex++].Length;
1246
cpRunEnd +=
_runs
[runIndex].Length - 1;
1251
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1258
if (
_runs
[runIndex].EOT)
1261
cpVisible = cpRunEnd -
_runs
[runIndex].Length + 1;
1265
cpRunEnd -=
_runs
[runIndex--].Length;
1282
while (runIndex <
_runs
.Length && cpRunStart +
_runs
[runIndex].Length <= cp)
1284
cpRunStart +=
_runs
[runIndex++].Length;