12 references to SafeCharAt
Microsoft.CodeAnalysis.CSharp.EditorFeatures (12)
StringCopyPaste\StringCopyPasteHelpers.cs (2)
171
if (
SafeCharAt
(text, end - 1) == '8')
173
if (
SafeCharAt
(text, end - 1) is 'u' or 'U')
StringCopyPaste\StringInfo.cs (10)
87
while (
SafeCharAt
(text, start) == '"')
113
while (SyntaxFacts.IsWhitespace(
SafeCharAt
(text, rawStart)))
116
if (
SafeCharAt
(text, rawStart) == '\r' &&
SafeCharAt
(text, rawStart + 1) == '\n')
129
while (SyntaxFacts.IsWhitespace(
SafeCharAt
(text, rawEnd - 1)))
132
if (
SafeCharAt
(text, rawEnd - 2) == '\r' &&
SafeCharAt
(text, rawEnd - 1) == '\n')
159
if (
SafeCharAt
(text, start) == '@')
163
if (
SafeCharAt
(text, start) == '"')
188
while (
SafeCharAt
(text, start) is '@' or '$')