9 references to IndentationSize
Microsoft.CodeAnalysis.CodeStyle (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (4)
100
Options.
IndentationSize
,
199
return baseIndentationDelta * self.Options.
IndentationSize
;
230
var indentation = operation.IndentationDeltaOrPosition * Options.
IndentationSize
;
242
totalAdjustment += operation.IndentationDeltaOrPosition * Options.
IndentationSize
;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Indentation\AbstractIndentation.Indenter.cs (1)
65
options.FormattingOptions.
IndentationSize
,
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Analyzers\Core\CodeFixes\UseObjectInitializer\AbstractUseObjectInitializerCodeFixProvider.cs (1)
138
var desiredSpaceCount = spaceCount + options.
IndentationSize
;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
src\Analyzers\CSharp\CodeFixes\ConvertNamespace\ConvertNamespaceTransform.cs (1)
249
var indentation = FormattingExtensions.CreateIndentationString(options.
IndentationSize
, options.UseTabs, options.TabSize);
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Indentation\CSharpIndentationService.Indenter.cs (2)
271
return indenter.GetIndentationOfLine(sourceText.Lines.GetLineFromPosition(nonTerminalNode.GetFirstToken(includeZeroWidth: true).SpanStart), indenter.Options.FormattingOptions.
IndentationSize
);
462
var spaceToAdd = additionalSpace ?? indenter.Options.FormattingOptions.
IndentationSize
;