1 implementation of GetIndentation
Microsoft.CodeAnalysis.Workspaces (1)
AbstractIndentationService.cs (1)
19public IndentationResult GetIndentation(
13 references to GetIndentation
Microsoft.CodeAnalysis.CSharp.Features (10)
BraceCompletion\AbstractCurlyBraceOrBracketCompletionService.cs (1)
160var indentation = indentationService.GetIndentation(document, lineNumber, options, cancellationToken);
ConvertNamespaceTransform.cs (1)
114var indentation = indentationService.GetIndentation(document, openBraceLine + 1, indentationOptions, cancellationToken);
ConvertToRawString\ConvertRegularStringToRawStringCodeRefactoringProvider.cs (1)
291var indentationVal = indenter.GetIndentation(parsedDocument, tokenLine.LineNumber, indentationOptions, cancellationToken);
Snippets\AbstractCSharpTypeSnippetProvider.cs (1)
77var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine + 1, indentationOptions, cancellationToken);
Snippets\CSharpConstructorSnippetProvider.cs (1)
71var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine + 1, indentationOptions, cancellationToken);
Snippets\CSharpElseSnippetProvider.cs (1)
93var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine + 1, indentationOptions, cancellationToken);
Snippets\CSharpForEachLoopSnippetProvider.cs (1)
80var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine + 1, indentationOptions, cancellationToken);
Snippets\CSharpIfSnippetProvider.cs (1)
57var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine + 1, indentationOptions, cancellationToken);
Snippets\CSharpWhileLoopSnippetProvider.cs (1)
57var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine + 1, indentationOptions, cancellationToken);
SplitStringLiteral\StringSplitter.cs (1)
140var desiredIndentation = indentationService.GetIndentation(
Microsoft.CodeAnalysis.EditorFeatures (1)
SmartIndent\SmartIndent.cs (1)
53var result = newService.GetIndentation(parsedDocument, line.LineNumber, indentationOptions, cancellationToken);
Microsoft.CodeAnalysis.Features (1)
Wrapping\AbstractCodeActionComputer.cs (1)
106var desiredIndentation = indentationService.GetIndentation(
Microsoft.CodeAnalysis.Workspaces (1)
IIndentationService.cs (1)
59var indentation = indenter.GetIndentation(newDocument, newTokenLine.LineNumber, options, cancellationToken);