2 writes to Count
PresentationCore (2)
System\Windows\Media\ByteStreamGeometryContext.cs (2)
654
_currentPolySegmentData.
Count
++;
676
_currentPolySegmentData.
Count
+= (uint)count;
8 references to Count
PresentationCore (8)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
590
_lastSegmentSize = (UInt32)(sizeof(MIL_SEGMENT_POLY) + (sizeof(Point) * _currentPolySegmentData.
Count
));
System\Windows\Media\PathGeometry.cs (7)
238
Debug.Assert(pSegmentPoly->
Count
<= Int32.MaxValue);
240
if (pSegmentPoly->
Count
> 0)
242
List<Point> points = new List<Point>((int)pSegmentPoly->
Count
);
248
(int)pSegmentPoly->
Count
* sizeof(Point));
252
(int)pSegmentPoly->
Count
* sizeof(Point));
256
for (uint k = 0; k < pSegmentPoly->
Count
; k++)
282
currentOffset += sizeof(MIL_SEGMENT_POLY) + (int)pSegmentPoly->
Count
* sizeof(Point);