1 write to _runs
PresentationCore (1)
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
331
_runs
= new SimpleRun[count];
26 references to _runs
PresentationCore (26)
MS\Internal\TextFormatting\SimpleTextLine.cs (26)
342
_runs
[i] = run;
451
foreach(SimpleRun run in
_runs
)
577
if (
_runs
.Length <= 0)
593
foreach (SimpleRun run in
_runs
)
651
for(int i = 0; i <
_runs
.Length; i++)
653
run = (SimpleRun)
_runs
[i];
828
foreach(SimpleRun run in
_runs
)
882
TextSpan<TextRun>[] textRunSpans = new TextSpan<TextRun>[
_runs
.Length];
884
for (int i = 0; i <
_runs
.Length; i++)
886
textRunSpans[i] = new TextSpan<TextRun>(
_runs
[i].Length,
_runs
[i].TextRun);
898
List<IndexedGlyphRun> indexedGlyphRuns = new List<IndexedGlyphRun>(
_runs
.Length);
904
foreach(SimpleRun run in
_runs
)
1199
while (runIndex <
_runs
.Length)
1203
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1209
cpRunStart +=
_runs
[runIndex++].Length;
1230
cpRunEnd +=
_runs
[runIndex].Length - 1;
1235
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1242
if (
_runs
[runIndex].EOT)
1245
cpVisible = cpRunEnd -
_runs
[runIndex].Length + 1;
1249
cpRunEnd -=
_runs
[runIndex--].Length;
1266
while (runIndex <
_runs
.Length && cpRunStart +
_runs
[runIndex].Length <= cp)
1268
cpRunStart +=
_runs
[runIndex++].Length;