18 references to IsDoubleQuote
Microsoft.CodeAnalysis.VisualBasic (18)
Scanner\Scanner.vb (10)
1321
If Not fullWidth AndAlso CanGet(1) AndAlso
IsDoubleQuote
(Peek(1)) Then
1331
Debug.Assert(Not
IsDoubleQuote
(ch))
1334
If
IsDoubleQuote
(ch) Then
2516
Debug.Assert(
IsDoubleQuote
(Peek))
2525
If CanGet(3) AndAlso
IsDoubleQuote
(Peek(2)) Then
2526
If
IsDoubleQuote
(Peek(1)) Then
2527
If
IsDoubleQuote
(Peek(3)) AndAlso
2542
IsDoubleQuote
(Peek(1)) AndAlso
2555
If
IsDoubleQuote
(ch) Then
2559
If
IsDoubleQuote
(ch) Then
Scanner\ScannerInterpolatedString.vb (8)
37
Debug.Assert(Not CanGet(offset + 1) OrElse Peek(offset + 1) <> c OrElse Not (IsLeftCurlyBracket(c) OrElse
IsDoubleQuote
(c)), "Escape sequence not detected.")
44
If CanGet(offset + 1) AndAlso
IsDoubleQuote
(Peek(offset + 1)) Then
79
If
IsDoubleQuote
(c) Then
80
Debug.Assert(Not CanGet(offset + 1) OrElse Not
IsDoubleQuote
(Peek(offset + 1)))
128
ElseIf
IsDoubleQuote
(c)
133
Return Not CanGet(offset + 1) OrElse Not
IsDoubleQuote
(Peek(offset + 1))
182
ElseIf
IsDoubleQuote
(c)
184
If CanGet(offset + 1) AndAlso
IsDoubleQuote
(Peek(offset + 1)) Then