1 write to Offset
Microsoft.CodeAnalysis.Workspaces (1)
IndentationResult.cs (1)
35this.Offset = offset;
10 references to Offset
Microsoft.CodeAnalysis.CSharp.Features (8)
BraceCompletion\AbstractCurlyBraceOrBracketCompletionService.cs (1)
164var totalOffset = offsetOfBasePosition + indentation.Offset;
Snippets\AbstractCSharpTypeSnippetProvider.cs (1)
80var newIndentation = new IndentationResult(indentation.BasePosition, indentation.Offset + syntaxFormattingOptions.TabSize);
Snippets\CSharpConstructorSnippetProvider.cs (1)
74var newIndentation = new IndentationResult(indentation.BasePosition, indentation.Offset + syntaxFormattingOptions.TabSize);
Snippets\CSharpElseSnippetProvider.cs (1)
96var newIndentation = new IndentationResult(indentation.BasePosition, indentation.Offset + syntaxFormattingOptions.TabSize);
Snippets\CSharpForEachLoopSnippetProvider.cs (1)
83var newIndentation = new IndentationResult(indentation.BasePosition, indentation.Offset + syntaxFormattingOptions.TabSize);
Snippets\CSharpIfSnippetProvider.cs (1)
60var newIndentation = new IndentationResult(indentation.BasePosition, indentation.Offset + syntaxFormattingOptions.TabSize);
Snippets\CSharpWhileLoopSnippetProvider.cs (1)
60var newIndentation = new IndentationResult(indentation.BasePosition, indentation.Offset + syntaxFormattingOptions.TabSize);
SplitStringLiteral\StringSplitter.cs (1)
149var indent = baseOffsetInLineInColumns + desiredIndentation.Offset;
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Extensions\SmartIndentExtensions.cs (1)
24return lineInSurfaceSnapshot.GetColumnFromLineOffset(offsetInLine, textView.Options) + result.Offset;
Microsoft.CodeAnalysis.Workspaces (1)
IIndentationService.cs (1)
72var indent = baseOffsetInLine + indentationResult.Offset;