Implemented interface members:
22 references to Count
Microsoft.CodeAnalysis.CSharp.Features (5)
ConvertToRawString\ConvertRegularStringToRawStringCodeRefactoringProvider.cs (2)
93
CleanupWhitespace(characters).
Count
> 0;
218
for (int i = 0, n = characterList.
Count
; i < n; i++)
EmbeddedLanguages\CSharpTestEmbeddedLanguageClassifier.cs (3)
83
else if (virtualCharsWithoutMarkup.
Count
> 0)
117
new TextSpan(0, virtualCharsWithoutMarkup.
Count
),
277
public override int Length => _virtualChars.
Count
;
Microsoft.CodeAnalysis.Workspaces (17)
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (11)
132
if (unchecked((uint)index) >= (uint)self.
Count
)
297
if (index == 0 && count == self.
Count
)
314
if (index == self.
Count
)
329
if (index == self.
Count
)
345
if (count < 0 || count > self.
Count
)
377
var index = self.IndexOf(value, 0,
Count
, equalityComparer);
456
if (count == 0 && index >= 0 && index <= self.
Count
)
499
if (self.
Count
< 2)
529
if (self.
Count
< 2)
543
if (self.
Count
< 2)
562
if (self.
Count
< 2)
src\Dependencies\Collections\Segmented\ImmutableSegmentedListExtensions.cs (4)
69
return immutableList.
Count
> 0
70
? immutableList[immutableList.
Count
- 1]
93
for (var i = immutableList.
Count
- 1; i >= 0; i--)
123
int high = array.
Count
- 1;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\VirtualChars\VirtualCharGreenSequence.Chunks.cs (1)
33
public override int Length => array.
Count
;
Workspace\ProjectSystem\ProjectSystemProject.BatchingDocumentCollection.cs (1)
407
var documentsToChange = ArrayBuilder<(DocumentId, TextLoader)>.GetInstance(filePaths.
Count
);