1 write to _runs
PresentationCore (1)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
332
_runs
= new SimpleRun[count];
26 references to _runs
PresentationCore (26)
MS\Internal\TextFormatting\SimpleTextLine.cs (26)
343
_runs
[i] = run;
452
foreach(SimpleRun run in
_runs
)
578
if (
_runs
.Length <= 0)
597
foreach (SimpleRun run in
_runs
)
658
for(int i = 0; i <
_runs
.Length; i++)
660
run = (SimpleRun)
_runs
[i];
835
foreach(SimpleRun run in
_runs
)
889
TextSpan<TextRun>[] textRunSpans = new TextSpan<TextRun>[
_runs
.Length];
891
for (int i = 0; i <
_runs
.Length; i++)
893
textRunSpans[i] = new TextSpan<TextRun>(
_runs
[i].Length,
_runs
[i].TextRun);
905
List<IndexedGlyphRun> indexedGlyphRuns = new List<IndexedGlyphRun>(
_runs
.Length);
911
foreach(SimpleRun run in
_runs
)
1206
while (runIndex <
_runs
.Length)
1210
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1216
cpRunStart +=
_runs
[runIndex++].Length;
1237
cpRunEnd +=
_runs
[runIndex].Length - 1;
1242
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1249
if (
_runs
[runIndex].EOT)
1252
cpVisible = cpRunEnd -
_runs
[runIndex].Length + 1;
1256
cpRunEnd -=
_runs
[runIndex--].Length;
1273
while (runIndex <
_runs
.Length && cpRunStart +
_runs
[runIndex].Length <= cp)
1275
cpRunStart +=
_runs
[runIndex++].Length;