6 references to IndexOf
Microsoft.CodeAnalysis.CSharp.EditorFeatures (2)
StringCopyPaste\StringCopyPasteData.cs (2)
113var firstCharIndexInclusive = virtualChars.IndexOf(firstOverlappingChar.Value); 114var lastCharIndexInclusive = virtualChars.IndexOf(lastOverlappingChar.Value);
Microsoft.CodeAnalysis.ExternalAccess.AspNetCore (2)
EmbeddedLanguages\AspNetCoreVirtualCharSequence.cs (2)
48/// <inheritdoc cref="VirtualCharSequence.IndexOf"/> 50=> _virtualCharSequence.IndexOf(@char.VirtualChar);
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\RegularExpressions\LanguageServices\RegexEmbeddedCompletionProvider.cs (1)
252var index = tree.Text.IndexOf(previousVirtualChar);
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\VirtualChars\VirtualCharSequence.cs (1)
103=> IndexOf(@char) >= 0;