3 writes to Count
Microsoft.CodeAnalysis (3)
Syntax\InternalSyntax\SyntaxListBuilder.cs (3)
29
this.
Count
= 0;
65
_nodes[
Count
++].Value = item;
130
Count
--;
13 references to Count
Microsoft.CodeAnalysis (13)
Syntax\InternalSyntax\SeparatedSyntaxListBuilder.cs (1)
43
return _builder!.
Count
;
Syntax\InternalSyntax\SyntaxListBuilder.cs (11)
79
int oldCount = this.
Count
;
86
Validate(oldCount, this.
Count
);
108
int oldCount = this.
Count
;
115
Validate(oldCount, this.
Count
);
131
_nodes[
Count
].Value = null;
137
int requiredSize = this.
Count
+ additionalCount;
152
for (int i = 0; i <
Count
; i++)
165
var array = new GreenNode[this.
Count
];
176
switch (this.
Count
)
187
var tmp = new ArrayElement<GreenNode>[this.
Count
];
188
Array.Copy(_nodes, tmp, this.
Count
);
Syntax\InternalSyntax\SyntaxListBuilder`1.cs (1)
40
return _builder.
Count
;