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