1 write to _runs
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (1)
345
_runs
= new SimpleRun[count];
26 references to _runs
PresentationCore (26)
Core\CSharp\MS\Internal\TextFormatting\SimpleTextLine.cs (26)
356
_runs
[i] = run;
465
foreach(SimpleRun run in
_runs
)
594
if (
_runs
.Length <= 0)
613
foreach (SimpleRun run in
_runs
)
674
for(int i = 0; i <
_runs
.Length; i++)
676
run = (SimpleRun)
_runs
[i];
854
foreach(SimpleRun run in
_runs
)
908
TextSpan<TextRun>[] textRunSpans = new TextSpan<TextRun>[
_runs
.Length];
910
for (int i = 0; i <
_runs
.Length; i++)
912
textRunSpans[i] = new TextSpan<TextRun>(
_runs
[i].Length,
_runs
[i].TextRun);
928
List<IndexedGlyphRun> indexedGlyphRuns = new List<IndexedGlyphRun>(
_runs
.Length);
934
foreach(SimpleRun run in
_runs
)
1229
while (runIndex <
_runs
.Length)
1233
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1239
cpRunStart +=
_runs
[runIndex++].Length;
1260
cpRunEnd +=
_runs
[runIndex].Length - 1;
1265
if (
_runs
[runIndex].IsVisible && !
_runs
[runIndex].EOT)
1272
if (
_runs
[runIndex].EOT)
1275
cpVisible = cpRunEnd -
_runs
[runIndex].Length + 1;
1279
cpRunEnd -=
_runs
[runIndex--].Length;
1296
while (runIndex <
_runs
.Length && cpRunStart +
_runs
[runIndex].Length <= cp)
1298
cpRunStart +=
_runs
[runIndex++].Length;