2 writes to _strokeDescriptorTable
PresentationCore (2)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (2)
340
_strokeDescriptorTable
= new System.Collections.Generic.List<StrokeDescriptor>();
1731
_strokeDescriptorTable
= new List<StrokeDescriptor>(_coreStrokes.Count);
19 references to _strokeDescriptorTable
PresentationCore (19)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (19)
592
if (
_strokeDescriptorTable
.Count <= strokeDescriptorTableIndex)
596
strokeDescriptor =
_strokeDescriptorTable
[(int)strokeDescriptorTableIndex];
981
_strokeDescriptorTable
.Clear();
991
_strokeDescriptorTable
.Add(descr);
1005
_strokeDescriptorTable
.Clear();
1038
_strokeDescriptorTable
.Add(descr);
2267
if (
_strokeDescriptorTable
.Count == 0)
2274
if (
_strokeDescriptorTable
.Count == 1)
2276
StrokeDescriptor tmp =
_strokeDescriptorTable
[0];
2296
for (count = 0; count <
_strokeDescriptorTable
.Count; count++)
2298
cbTotal += SerializationHelper.VarSize((
_strokeDescriptorTable
[count]).Size) + (
_strokeDescriptorTable
[count]).Size;
2306
for (count = 0; count <
_strokeDescriptorTable
.Count; count++)
2308
cbData += EncodeStrokeDescriptor(strm,
_strokeDescriptorTable
[count]);
2618
_strokeDescriptorTable
.Clear();
2635
for (int descriptorIndex = 0; descriptorIndex <
_strokeDescriptorTable
.Count; descriptorIndex++)
2637
if (strokeDescriptor.IsEqual(
_strokeDescriptorTable
[descriptorIndex]))
2646
_strokeDescriptorTable
.Add(strokeDescriptor);
2647
_strokeLookupTable[stroke].StrokeDescriptorTableIndex = (uint)
_strokeDescriptorTable
.Count - 1;