Implemented interface member:
25 references to Count
Microsoft.CodeAnalysis.PublicApiAnalyzers (25)
DeclarePublicApiAnalyzer.cs (8)
206
if (allShippedData.
Count
== 0 && allUnshippedData.
Count
== 0)
222
if (allShippedData.
Count
> 0 && allUnshippedData.
Count
> 0)
230
var missingFileName = (allShippedData.
Count
== 0, isPublic) switch
247
Debug.Assert(allData.
Count
> 0);
251
if (allData.
Count
== 1)
257
for (int i = 0, n = allData.
Count
; i < n; i++)
src\RoslynAnalyzers\Utilities\Compiler\PooledObjects\ArrayBuilder.cs (16)
36
var result = new T[_builder.
Count
];
154
=> FindIndex(0, this.
Count
, match);
157
=> FindIndex(startIndex, this.
Count
- startIndex, match);
238
if (
Count
== 0)
252
if (
Count
== 0)
257
var tmp = ArrayBuilder<U>.GetInstance(
Count
);
272
if (_builder.Capacity ==
Count
)
314
if (this.
Count
!= 0)
335
Debug.Assert(builder.
Count
== 0);
391
if (this.
Count
== 1)
399
if (this.
Count
== 0)
406
var accumulator = new Dictionary<K, ArrayBuilder<T>>(
Count
, comparer);
407
for (int i = 0; i <
Count
; i++)
481
Debug.Assert(limit <=
Count
);
504
for (int i = 0; i <
Count
; i++)
518
using var result = ArrayBuilder<S>.GetInstance(
Count
);
src\RoslynAnalyzers\Utilities\Compiler\PooledObjects\ArrayBuilder.Enumerator.cs (1)
32
return _index < _builder.
Count
;