2 instantiations of TypeListItem
Microsoft.VisualStudio.LanguageServices (2)
Library\ObjectBrowser\AbstractListItemFactory.cs (2)
107
return new
TypeListItem
(projectId, namedTypeSymbol, displayText, fullNameText, searchText, hidden);
120
return new
TypeListItem
(projectId, namedTypeSymbol, displayText, fullNameText, searchText, hidden);
16 references to TypeListItem
Microsoft.VisualStudio.LanguageServices (16)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (2)
165
private void BuildType(
TypeListItem
typeListItem, _VSOBJDESCOPTIONS options)
471
case
TypeListItem
typeListItem:
Library\ObjectBrowser\AbstractListItemFactory.cs (8)
97
protected
TypeListItem
CreateSimpleTypeListItem(INamedTypeSymbol namedTypeSymbol, ProjectId projectId, bool hidden)
110
protected
TypeListItem
CreateFullyQualifiedTypeListItem(INamedTypeSymbol namedTypeSymbol, ProjectId projectId, bool hidden)
231
Debug.Assert(parentListItem is
TypeListItem
);
234
if (parentListItem is not
TypeListItem
parentTypeItem)
247
Debug.Assert(parentListItem is
TypeListItem
or
261
if (parentListItem is
TypeListItem
parentTypeItem)
391
Debug.Assert(parentListItem is
TypeListItem
);
394
if (parentListItem is not
TypeListItem
parentTypeItem)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
435
else if (symbolListItem is
TypeListItem
)
Library\ObjectBrowser\ObjectList.cs (5)
170
var
typeListItem = (
TypeListItem
)GetListItem(index);
195
var
typeListItem = (
TypeListItem
)GetListItem(index);
419
if (GetListItem(index) is not
TypeListItem
typeListItem)