10 references to SpaceAfterMethodCallName
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CSharpSyntaxFormattingOptions.cs (1)
77(options.GetOption(CSharpFormattingOptions2.SpaceAfterMethodCallName, fallbackOptions.Spacing.HasFlag(SpacePlacement.AfterMethodCallName)) ? SpacePlacement.AfterMethodCallName : 0) |
Formatting\CSharpFormattingOptions.cs (2)
81/// <inheritdoc cref="CSharpFormattingOptions2.SpaceAfterMethodCallName"/> 82public static Option<bool> SpaceAfterMethodCallName { get; } = CSharpFormattingOptions2.SpaceAfterMethodCallName.ToPublicOption();
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (3)
Formatting\FormattingTests.cs (3)
5084{ CSharpFormattingOptions2.SpaceAfterMethodCallName, true } 8119{ CSharpFormattingOptions2.SpaceAfterMethodCallName, true }, 8183{ CSharpFormattingOptions2.SpaceAfterMethodCallName, true },
Microsoft.VisualStudio.LanguageServices.CSharp (4)
EditorConfigSettings\DataProvider\Whitespace\CSharpWhitespaceSettingsProvider.cs (1)
49yield return Setting.Create(CSharpFormattingOptions2.SpaceAfterMethodCallName, CSharpVSResources.Insert_space_between_called_method_name_and_its_opening_parenthesis, options, updaterService);
Options\AutomationObject\AutomationObject.Formatting.cs (2)
170get { return GetBooleanOption(CSharpFormattingOptions2.SpaceAfterMethodCallName); } 171set { SetBooleanOption(CSharpFormattingOptions2.SpaceAfterMethodCallName, value); }
Options\Formatting\SpacingViewModel.cs (1)
119Items.Add(new CheckBoxOptionViewModel(CSharpFormattingOptions2.SpaceAfterMethodCallName, CSharpVSResources.Insert_space_between_called_method_name_and_its_opening_parenthesis, s_methodPreview, this, optionStore));