Implemented interface members:
17 references to Count
Microsoft.CodeAnalysis.CodeStyle (17)
ImmutableSegmentedList`1.cs (2)
81
public int Count => _list.
Count
;
86
public bool IsEmpty => _list.
Count
== 0;
ImmutableSegmentedList`1+ValueBuilder.cs (3)
33
public readonly int Count => ReadOnlyList.
Count
;
62
if ((uint)index >= (uint)ReadOnlyList.
Count
)
106
if (ReadOnlyList.
Count
!= 0)
ObjectReader.cs (1)
338
var id = _values.
Count
;
SegmentedList`1.cs (7)
260
return
Count
- 1;
306
=> BinarySearch(0,
Count
, item, null);
309
=> BinarySearch(0,
Count
, item, comparer);
774
SegmentedArray.Copy(list._items, 0, _items, index, list.
Count
);
1032
=> Reverse(0,
Count
);
1064
=> Sort(0,
Count
, null);
1069
=> Sort(0,
Count
, comparer);
TokenStream.cs (3)
84
for (var i = 1; i < _tokens.
Count
; i++)
134
public int TokenCount => _tokens.
Count
;
520
for (var i = tokenIndex; i < _tokens.
Count
; i++)
TokenStream.Iterator.cs (1)
39
_maxCount = _tokensIncludingZeroWidth.
Count
- 1;