13 references to Width
Microsoft.CodeAnalysis.CSharp (13)
Parser\Lexer.cs (9)
1601var width = TextWindow.Width; // exact size of input characters 1810var width = TextWindow.Width; // exact size of input characters 2144if (this.TextWindow.Width > 0) 2165if (this.TextWindow.Width > 0) 2304if (TextWindow.Width == 1 && onlySpaces) 2310var width = TextWindow.Width; 2426return TextWindow.Width > 0 ? SyntaxFactory.DisabledText(TextWindow.GetText(false)) : null; 2436return TextWindow.Width > 0 ? SyntaxFactory.DisabledText(TextWindow.GetText(false)) : null; 2784this.AddError(TextWindow.LexemeStartPosition, TextWindow.Width, ErrorCode.ERR_OpenEndedComment);
Parser\Lexer_StringLiteral.cs (1)
63Debug.Assert(TextWindow.Width > 0);
Parser\QuickScanner.cs (1)
256var quickWidth = lexer.TextWindow.Width;
Parser\SlidingTextWindow.cs (2)
409return this.Intern(_characterWindow, _lexemeStart, this.Width); 414return this.GetText(this.LexemeStartPosition, this.Width, intern);