13 references to Width
Microsoft.CodeAnalysis.CSharp (13)
Parser\Lexer.cs (9)
1913var width = TextWindow.Width; // exact size of input characters 2192var width = TextWindow.Width; // exact size of input characters 2503if (this.TextWindow.Width > 0) 2524if (this.TextWindow.Width > 0) 2682if (TextWindow.Width == 1 && onlySpaces) 2688var width = TextWindow.Width; 2805return TextWindow.Width > 0 ? SyntaxFactory.DisabledText(TextWindow.GetText(false)) : null; 2815return TextWindow.Width > 0 ? SyntaxFactory.DisabledText(TextWindow.GetText(false)) : null; 3159this.AddError(TextWindow.LexemeStartPosition, TextWindow.Width, ErrorCode.ERR_OpenEndedComment);
Parser\Lexer_StringLiteral.cs (1)
63Debug.Assert(TextWindow.Width > 0);
Parser\QuickScanner.cs (1)
260var quickWidth = TextWindow.Width;
Parser\SlidingTextWindow.cs (2)
675return this.Intern(_characterWindow, _lexemeStart, this.Width); 680return this.GetText(this.LexemeStartPosition, this.Width, intern);