1 write to Name
Microsoft.CodeAnalysis.Workspaces (1)
SymbolSpecification.cs (1)
55Name = name;
21 references to Name
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (7)
Diagnostics\NamingStyles\EditorConfigNamingStyleParserTests.cs (7)
46Assert.Equal("method_and_property_symbols", symbolSpec.Name); 116Assert.Equal("method_symbols", symbolSpec.Name); 174Assert.Equal("public_symbols", symbolSpec.Name); 222Assert.Equal("non_public_symbols", symbolSpec.Name); 266Assert.Equal("parameters_and_locals", symbolSpec.Name); 309Assert.Equal("local_functions", symbolSpec.Name); 453Assert.Equal("symbols", symbolSpec.Name);
Microsoft.CodeAnalysis.EditorFeatures (4)
EditorConfigSettings\Data\NamingStyleSetting.cs (1)
56public string TypeName => Type?.Name ?? string.Empty;
EditorConfigSettings\Updater\NamingStyles\SourceTextExtensions.cs (3)
162return StringComparer.OrdinalIgnoreCase.Equals(left!.Name, right!.Name) && 170return Hash.Combine(StringComparer.OrdinalIgnoreCase.GetHashCode(symbolSpecification.Name),
Microsoft.CodeAnalysis.Workspaces (9)
EditorConfigFileGenerator_NamingStyles.cs (1)
119var name = ToSnakeCaseName(symbolSpecification.Name);
SymbolSpecification.cs (8)
62=> Name; 215&& Name == other.Name 224Hash.Combine(Name.GetHashCode(), 234new XAttribute(nameof(Name), Name), 245writer.WriteString(Name); 300name: symbolSpecificationElement.Attribute(nameof(Name)).Value,
Microsoft.VisualStudio.LanguageServices.Implementation (1)
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationViewModel.cs (1)
43ItemName = specification.Name;