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