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)
167
private void BuildType(
TypeListItem
typeListItem, _VSOBJDESCOPTIONS options)
474
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)
232
Debug.Assert(parentListItem is
TypeListItem
);
235
if (parentListItem is not
TypeListItem
parentTypeItem)
248
Debug.Assert(parentListItem is
TypeListItem
or
262
if (parentListItem is
TypeListItem
parentTypeItem)
394
Debug.Assert(parentListItem is
TypeListItem
);
397
if (parentListItem is not
TypeListItem
parentTypeItem)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
438
else if (symbolListItem is
TypeListItem
)
Library\ObjectBrowser\ObjectList.cs (5)
176
var
typeListItem = (
TypeListItem
)GetListItem(index);
201
var
typeListItem = (
TypeListItem
)GetListItem(index);
425
if (GetListItem(index) is not
TypeListItem
typeListItem)