52 references to MethodPrivate
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (19)
Interactive\NavigateTo\InteractiveNavigateToTests.cs (4)
315VerifyNavigateToResultItem(item, "DoSomething", "[|D|]o[|S|]omething()", PatternMatchKind.CamelCaseExact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 332VerifyNavigateToResultItem(item, "DoSomething", "[|D|]o[|S|]omething(int, string)", PatternMatchKind.CamelCaseExact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 383VerifyNavigateToResultItem(item, "Goo", "[|Goo|].static Goo()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 413VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_1_2, "Goo", "test1.cs", "Test"));
NavigateTo\NavigateToTests.cs (15)
485VerifyNavigateToResultItem(item, "DoSomething", "[|D|]o[|S|]omething()", PatternMatchKind.CamelCaseExact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 500VerifyNavigateToResultItem(item, "static", "[|static|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 504VerifyNavigateToResultItem(item, "static", "[|static|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 521VerifyNavigateToResultItem(item, "DoSomething", "[|D|]o[|S|]omething(int, string)", PatternMatchKind.CamelCaseExact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 572VerifyNavigateToResultItem(item, "Goo", "[|Goo|].static Goo()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_project_1, "Goo", "Test")); 602VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_1_2, "Goo", "test1.cs", "Test")); 619VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, string.Format(FeaturesResources.in_0_1_2, "Goo", "test1.cs", "Test")); 677VerifyNavigateToResultItem(item, "Goo", "[|Goo|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate); 691VerifyNavigateToResultItem(item, "Goo", "[|Goo|](int)", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate); 705VerifyNavigateToResultItem(item, "Goo", "[|Goo|]<T>(int)", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate); 722VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate); 746VerifyNavigateToResultItem(item, "Goo", "[|Goo|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate); 770VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate); 866VerifyNavigateToResultItem(item, "M", "[|M|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, additionalInfo: string.Format(FeaturesResources.in_0_project_1, "A<T>.B.C<U>", "Test")); 920VerifyNavigateToResultItem(item, "M", "[|M|](object?)", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate);
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Extensions\GlyphExtensions.cs (1)
147case Glyph.MethodPrivate:
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (10)
NavigationBar\CSharpNavigationBarTests.vb (10)
34Item("Swap<T>(T lhs, T rhs)", Glyph.MethodPrivate)})) 128Item("IDisposable.Dispose()", Glyph.MethodPrivate)})) 143Item("M(out string goo, ref string bar)", Glyph.MethodPrivate)})) 158Item("M(int i = 0)", Glyph.MethodPrivate)})) 173Item("M(CancellationToken cancellationToken = default)", Glyph.MethodPrivate)})) 247Item("M()", Glyph.MethodPrivate), 248Item("M()", Glyph.MethodPrivate, grayed:=True)})) 262Item("M()", Glyph.MethodPrivate), 263Item("M()", Glyph.MethodPrivate, grayed:=True)})) 308Item("M(string? s, IEnumerable<string?> e)", Glyph.MethodPrivate)}))
Microsoft.CodeAnalysis.ExternalAccess.FSharp (2)
Internal\FSharpGlyphHelpers.cs (2)
222case Microsoft.CodeAnalysis.Glyph.MethodPrivate: 539return Microsoft.CodeAnalysis.Glyph.MethodPrivate;
Microsoft.CodeAnalysis.ExternalAccess.FSharp.UnitTests (2)
FSharpGlyphTests.cs (2)
241case Microsoft.CodeAnalysis.Glyph.MethodPrivate: 558return Microsoft.CodeAnalysis.Glyph.MethodPrivate;
Microsoft.CodeAnalysis.Features (4)
Common\GlyphExtensions.cs (1)
149Accessibility.Private => Glyph.MethodPrivate,
Common\GlyphTags.cs (1)
66Glyph.MethodPrivate => WellKnownTagArrays.MethodPrivate,
ExternalAccess\VSTypeScript\VSTypeScriptGlyphHelpers.cs (2)
69Glyph.MethodPrivate => VSTypeScriptGlyph.MethodPrivate, 153VSTypeScriptGlyph.MethodPrivate => Glyph.MethodPrivate,
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (4)
Symbols\DocumentSymbolsTests.cs (1)
69CreateSymbolInformation(LSP.SymbolKind.Method, "M()", testLspServer.GetLocations("method").Single(), Glyph.MethodPrivate, "A")
Symbols\WorkspaceSymbolsTests.cs (3)
87CreateSymbolInformation(LSP.SymbolKind.Method, "M", testLspServer.GetLocations("method").Single(), Glyph.MethodPrivate, GetContainerName(testLspServer.GetCurrentSolution(), "A")) 167CreateSymbolInformation(LSP.SymbolKind.Method, "M", testLspServer.GetLocations("method")[0], Glyph.MethodPrivate, GetContainerName(testLspServer.GetCurrentSolution(), "A")), 168CreateSymbolInformation(LSP.SymbolKind.Method, "M", testLspServer.GetLocations("method")[1], Glyph.MethodPrivate, GetContainerName(testLspServer.GetCurrentSolution(), "B"))
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (7)
NavigateTo\NavigateToTests.vb (7)
309VerifyNavigateToResultItem(item, "DoSomething", "[|D|]o[|S|]omething()", PatternMatchKind.CamelCaseExact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_project_1, "Goo", "Test")) 321VerifyNavigateToResultItem(item, "Sub", "[|Sub|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_project_1, "Goo", "Test")) 324VerifyNavigateToResultItem(item, "Sub", "[|Sub|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_project_1, "Goo", "Test")) 336VerifyNavigateToResultItem(item, "DoSomething", "[|D|]o[|S|]omething(Integer, String)", PatternMatchKind.CamelCaseExact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_project_1, "Goo", "Test")) 360VerifyNavigateToResultItem(item, "Goo", "[|Goo|].New()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_project_1, "Goo", "Test")) 416VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_1_2, "Goo", "test1.vb", "Test")) 428VerifyNavigateToResultItem(item, "Bar", "[|Bar|]()", PatternMatchKind.Exact, NavigateToItemKind.Method, Glyph.MethodPrivate, String.Format(FeaturesResources.in_0_project_1, "Goo", "Test"))
Microsoft.VisualStudio.LanguageServices (3)
Progression\GraphBuilder.cs (1)
794Glyph.MethodPublic or Glyph.MethodProtected or Glyph.MethodPrivate or Glyph.MethodInternal => "Method",
Utilities\GlyphExtensions.cs (2)
113case Glyph.MethodPrivate: 188case Glyph.MethodPrivate: