3 references to TextMatch
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (1)
162=> syntaxFacts.IsIdentifier(token) && syntaxFacts.TextMatch(token.ValueText, name);
FindSymbols\FindReferences\Finders\ParameterSymbolReferenceFinder.cs (1)
162if (!syntaxFacts.TextMatch(methodSymbol1.Parameters[i].Name, methodSymbol2.Parameters[i].Name))
FindSymbols\FindReferences\FindReferenceCache.cs (1)
150=> !token.IsMissing && this.SyntaxFacts.IsIdentifier(token) && this.SyntaxFacts.TextMatch(token.ValueText, identifier);