10 references to All
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
CodeActions\InitializeParameter\InitializeMemberFromParameterTests.cs (1)
1550""", new(options: this.Option(CSharpFormattingOptions2.NewLineBeforeOpenBrace, NewLineBeforeOpenBracePlacement.All & ~NewLineBeforeOpenBracePlacement.Methods)));
CodeActions\InitializeParameter\InitializeMemberFromPrimaryConstructorParameterTests.cs (1)
979""", new(options: this.Option(CSharpFormattingOptions2.NewLineBeforeOpenBrace, NewLineBeforeOpenBracePlacement.All & ~NewLineBeforeOpenBracePlacement.Types)));
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (2)
ConvertAutoPropertyToFullProperty\ConvertAutoPropertyToFullPropertyTests_OptionSets.cs (2)
34{ CSharpFormattingOptions2.NewLineBeforeOpenBrace, NewLineBeforeOpenBracePlacement.All & ~NewLineBeforeOpenBracePlacement.Properties }, 41{ CSharpFormattingOptions2.NewLineBeforeOpenBrace, NewLineBeforeOpenBracePlacement.All & ~NewLineBeforeOpenBracePlacement.Accessors },
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\CSharpFormattingOptions2.cs (1)
50KeyValuePair.Create("all", NewLineBeforeOpenBracePlacement.All),
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\CSharpFormattingOptions2.Parsers.cs (2)
82allValue: (int)NewLineBeforeOpenBracePlacement.All); 88NewLineBeforeOpenBracePlacement.All => "all",
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (2)
Formatting\EditorConfigOptionParserTests.cs (2)
77[InlineData("all,none", NewLineBeforeOpenBracePlacement.All, "all")] 78[InlineData("none,all", NewLineBeforeOpenBracePlacement.All, "all")]
Roslyn.VisualStudio.Next.UnitTests (1)
Options\VisualStudioStorageReadFallbackTests.cs (1)
53Assert.Equal(fallback.TryRead(language, (_, _, _) => true).Value, NewLineBeforeOpenBracePlacement.All);