Implemented interface member:
17 references to Count
Microsoft.CodeAnalysis.Analyzers (17)
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
;