Implemented interface members:
19 references to Count
Microsoft.CodeAnalysis (19)
PEWriter\FullMetadataWriter.cs (1)
462
get { return _rows.
Count
+ 1; }
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (2)
83
public int Count => _list.
Count
;
88
public bool IsEmpty => _list.
Count
== 0;
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+ValueBuilder.cs (3)
35
public readonly int Count => ReadOnlyList.
Count
;
64
if ((uint)index >= (uint)ReadOnlyList.
Count
)
108
if (ReadOnlyList.
Count
!= 0)
src\Dependencies\Collections\Segmented\SegmentedList`1.cs (9)
290
return
Count
- 1;
316
SegmentedArray.Copy(list._items, 0, _items, _size, list.
Count
);
379
=> BinarySearch(0,
Count
, item, null);
382
=> BinarySearch(0,
Count
, item, comparer);
737
Count
== 0 ? GetEmptyEnumerator() :
928
SegmentedArray.Copy(list._items, 0, _items, index, list.
Count
);
1186
=> Reverse(0,
Count
);
1218
=> Sort(0,
Count
, null);
1223
=> Sort(0,
Count
, comparer);
Text\SourceText.cs (4)
974
public override int Count => _lineStarts.
Count
;
980
if (index < 0 || index >= _lineStarts.
Count
)
986
if (index == _lineStarts.
Count
- 1)
1012
var limit = Math.Min(_lineStarts.
Count
, lastLineNumber + 4);