9 references to IsIdentifier
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (2)
453
return this.
IsIdentifier
(token) && !token.ContainsDiagnostics && token.ToString().Length == identifier.Length;
459
return this.
IsIdentifier
(token) && !token.ContainsDiagnostics && token.ToString().Length == identifier.Length && token.IsVerbatimIdentifier();
Microsoft.CodeAnalysis.EditorFeatures (1)
RenameTracking\RenameTrackingTaggerProvider.TrackingSession.cs (1)
185
if (syntaxFactsService.
IsIdentifier
(token) && languageHeuristicsService.IsIdentifierValidForRenameTracking(token.Text))
Microsoft.CodeAnalysis.Features (1)
ExtractMethod\MethodExtractor.Analyzer.cs (1)
296
!syntaxFacts.
IsIdentifier
(token) ||
Microsoft.CodeAnalysis.Workspaces (5)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (1)
163
=> syntaxFacts.
IsIdentifier
(token) && syntaxFacts.TextMatch(token.ValueText, name);
FindSymbols\FindReferences\FindReferenceCache.cs (1)
150
=> !token.IsMissing && this.SyntaxFacts.
IsIdentifier
(token) && this.SyntaxFacts.TextMatch(token.ValueText, identifier);
FindSymbols\SyntaxTree\SyntaxTreeIndex_Create.cs (1)
126
if (syntaxFacts.
IsIdentifier
(token))
ObsoleteSymbol\AbstractObsoleteSymbolService.cs (1)
161
if (syntaxFacts.
IsIdentifier
(token))
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (1)
277
return syntaxFacts.
IsIdentifier
(token)