9 references to SlotCount
Microsoft.CodeAnalysis (4)
Syntax\SyntaxList`1.cs (2)
80
return _node == null ? 0 : (_node.IsList ? _node.
SlotCount
: 1);
97
if (unchecked((uint)index < (uint)_node.
SlotCount
))
Syntax\SyntaxNodeOrTokenList.cs (2)
92
get { return _node == null ? 0 : _node.Green.IsList ? _node.
SlotCount
: 1; }
114
if (unchecked((uint)index < (uint)_node.
SlotCount
))
Microsoft.CodeAnalysis.CSharp (1)
Parser\Blender.Cursor.cs (1)
133
if (node.
SlotCount
> 0)
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationExtensions.cs (3)
416
if (separatedList.
SlotCount
> 100)
431
int n = separatedList.
SlotCount
;
443
int n = separatedList.
SlotCount
;
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\SemanticModelGetDeclaredSymbolAPITests.vb (1)
1595
Assert.Equal(2, Labels.
SlotCount
)