2 implementations of IsIdentifierPartCharacter
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxFacts.cs (1)
456public bool IsIdentifierPartCharacter(char c)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
454Public Function IsIdentifierPartCharacter(c As Char) As Boolean Implements ISyntaxFacts.IsIdentifierPartCharacter
10 references to IsIdentifierPartCharacter
Microsoft.CodeAnalysis.EditorFeatures (3)
InlineRename\CommandHandlers\AbstractRenameCommandHandler_TypeCharHandler.cs (1)
37syntaxFactsService.IsIdentifierPartCharacter(args.TypedChar) ||
IntelliSense\AsyncCompletion\CompletionSource.cs (1)
665while (current < questionPosition && syntaxFacts.IsIdentifierPartCharacter(text[current]))
RenameTracking\RenameTrackingTaggerProvider.StateMachine.cs (1)
202return syntaxFactsService.IsIdentifierPartCharacter(c) || syntaxFactsService.IsIdentifierEscapeCharacter(c);
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (1)
Snippets\AbstractSnippetCommandHandler.cs (1)
271if (!syntaxFactsService.IsIdentifierPartCharacter(c) && c != '#' && c != '~')
Microsoft.CodeAnalysis.Features (1)
Snippets\SnippetUtilities.cs (1)
21if (!syntaxFactsService.IsIdentifierPartCharacter(c) && c != '#' && c != '~')
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxFacts.vb (1)
454Public Function IsIdentifierPartCharacter(c As Char) As Boolean Implements ISyntaxFacts.IsIdentifierPartCharacter
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder_GlobalSuppressions.cs (1)
222if (ch == '#' || syntaxFacts.IsIdentifierPartCharacter(ch))
ISyntaxFactsExtensions.cs (1)
265if (!syntaxFacts.IsIdentifierPartCharacter(name[i]))
Microsoft.VisualStudio.LanguageServices.CSharp (2)
LanguageService\CSharpHelpContextService.cs (2)
83while (start > 0 && syntaxFacts.IsIdentifierPartCharacter(text[start - 1])) 86while (end < text.Length - 1 && syntaxFacts.IsIdentifierPartCharacter(text[end]))