36 references to ClassInternal
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (15)
Completion\CompletionProviders\TypeImportCompletionProviderTests.cs (4)
393await VerifyTypeImportItemExistsAsync(markup, "Bar", glyph: (int)Glyph.ClassInternal, inlineDescription: "Foo"); 515await VerifyTypeImportItemExistsAsync(markup, "Bar", glyph: (int)Glyph.ClassInternal, inlineDescription: "Foo"); 516await VerifyTypeImportItemExistsAsync(markup, "Bar", displayTextSuffix: "<>", glyph: (int)Glyph.ClassInternal, inlineDescription: "Foo"); 541await VerifyTypeImportItemExistsAsync(markup, "Bar", glyph: (int)Glyph.ClassInternal, inlineDescription: "Foo");
Interactive\NavigateTo\InteractiveNavigateToTests.cs (2)
67VerifyNavigateToResultItem(item, "DogBed", "[|DogBed|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 180VerifyNavigateToResultItem(item, "Goo", "[|Goo|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal);
NavigateTo\NavigateToTests.cs (9)
46VerifyNavigateToResultItem(item, "Goo", "[|Goo|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 59VerifyNavigateToResultItem(item, "Goo", "[|Goo|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 72VerifyNavigateToResultItem(item, "Goo", "[|Goo|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 112VerifyNavigateToResultItem(item, "Goo", "[|Goo|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 126VerifyNavigateToResultItem(item, "static", "[|static|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 130VerifyNavigateToResultItem(item, "static", "[|static|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 149VerifyNavigateToResultItem(item, "DogBed", "[|DogBed|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 186VerifyNavigateToResultItem(item, "Goo", "[|Goo|]<T>", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal); 254VerifyNavigateToResultItem(item, "Goo", "[|Goo|]", PatternMatchKind.Exact, NavigateToItemKind.Class, Glyph.ClassInternal);
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\CompletionProviders\DeclarationName\DeclarationNameInfo.cs (1)
662publicIcon += Glyph.ClassInternal - Glyph.ClassPublic;
Microsoft.CodeAnalysis.ExternalAccess.FSharp (2)
Internal\FSharpGlyphHelpers.cs (2)
43case Microsoft.CodeAnalysis.Glyph.ClassInternal: 363return Microsoft.CodeAnalysis.Glyph.ClassInternal;
Microsoft.CodeAnalysis.ExternalAccess.FSharp.UnitTests (2)
FSharpGlyphTests.cs (2)
64case Microsoft.CodeAnalysis.Glyph.ClassInternal: 384return Microsoft.CodeAnalysis.Glyph.ClassInternal;
Microsoft.CodeAnalysis.Features (6)
Common\GlyphExtensions.cs (2)
66Accessibility.Internal => Glyph.ClassInternal, 265rawGlyph += (Glyph.ClassInternal - Glyph.ClassPublic);
Common\GlyphTags.cs (1)
21Glyph.ClassInternal => WellKnownTagArrays.ClassInternal,
ExternalAccess\VSTypeScript\VSTypeScriptGlyphHelpers.cs (2)
22Glyph.ClassInternal => VSTypeScriptGlyph.ClassInternal, 109VSTypeScriptGlyph.ClassInternal => Glyph.ClassInternal,
Shared\Extensions\ISymbolExtensions_2.cs (1)
176publicIcon += Glyph.ClassInternal - Glyph.ClassPublic;
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Extensions\Extensions.cs (1)
362Glyph.ClassInternal => (KnownImageIds.ImageCatalogGuid, KnownImageIds.ClassInternal),
Handler\Definitions\AbstractGoToDefinitionHandler.cs (1)
118case Glyph.ClassInternal:
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (5)
References\FindAllReferencesHandlerTests.cs (1)
141AssertValidDefinitionProperties(results, 0, Glyph.ClassInternal);
Symbols\DocumentSymbolsTests.cs (1)
90CreateSymbolInformation(LSP.SymbolKind.Class, "Test.A", testLspServer.GetLocations("class").Single(), Glyph.ClassInternal),
Symbols\WorkspaceSymbolsTests.cs (3)
50CreateSymbolInformation(LSP.SymbolKind.Class, "A", testLspServer.GetLocations("class").Single(), Glyph.ClassInternal, GetContainerName(testLspServer.GetCurrentSolution())) 72CreateSymbolInformation(LSP.SymbolKind.Class, "A", testLspServer.GetLocations("class").Single(), Glyph.ClassInternal, GetContainerName(testLspServer.GetCurrentSolution())) 227CreateSymbolInformation(LSP.SymbolKind.Class, "A", testLspServer.GetLocations("class").Single(), Glyph.ClassInternal, GetContainerName(testLspServer.GetCurrentSolution()))
Microsoft.VisualStudio.LanguageServices (2)
Utilities\GlyphExtensions.cs (2)
28case Glyph.ClassInternal: 195case Glyph.ClassInternal:
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (1)
DocumentOutline\DocumentOutlineTests.cs (1)
194Assert.Equal(Glyph.ClassInternal, item.Data.Glyph);