14 references to IndentationSize
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
CSharpIndentationService.Indenter.cs (2)
276
return indenter.GetIndentationOfLine(sourceText.Lines.GetLineFromPosition(nonTerminalNode.GetFirstToken(includeZeroWidth: true).SpanStart), indenter.Options.FormattingOptions.
IndentationSize
);
467
var spaceToAdd = additionalSpace ?? indenter.Options.FormattingOptions.
IndentationSize
;
Microsoft.CodeAnalysis.VisualBasic.Workspaces (3)
VisualBasicIndentationService.Indenter.vb (3)
128
Dim subQuerySpaces = If(token.IsLastTokenOfStatement(), 0, indenter.Options.FormattingOptions.
IndentationSize
)
299
Return indenter.GetIndentationOfLine(triviaLine, indenter.Options.FormattingOptions.
IndentationSize
)
321
Return GetIndentationOfCurrentPosition(indenter, token, position, indenter.Options.FormattingOptions.
IndentationSize
)
Microsoft.CodeAnalysis.Workspaces (8)
AbstractIndentation.Indenter.cs (1)
65
options.FormattingOptions.
IndentationSize
,
AbstractTriviaDataFactory.cs (3)
70
indentation % Options.
IndentationSize
== 0;
74
var indentationLevel = indentation / Options.
IndentationSize
;
97
var indentation = indentationLevel * Options.
IndentationSize
;
FormattingContext.cs (4)
102
Options.
IndentationSize
,
200
return baseIndentationDelta * self.Options.
IndentationSize
;
231
var indentation = operation.IndentationDeltaOrPosition * Options.
IndentationSize
;
243
totalAdjustment += operation.IndentationDeltaOrPosition * Options.
IndentationSize
;
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
Formatter\FormatterTests.cs (1)
141
Assert.Equal(7, formattingOptions.
IndentationSize
);