15 references to IsPredefinedType
Microsoft.CodeAnalysis.CSharp (11)
Parser\DocumentationCommentParser.cs (3)
1243return SyntaxFacts.IsPredefinedType(kind); 1302SyntaxFacts.IsPredefinedType(CurrentToken.Kind)) 1362if (SyntaxFacts.IsPredefinedType(CurrentToken.Kind))
Parser\LanguageParser.cs (6)
1298if (SyntaxFacts.IsPredefinedType(this.CurrentToken.Kind)) 6804return SyntaxFacts.IsPredefinedType(keyword); 7575(SyntaxFacts.IsPredefinedType(tk) && 7732else if (SyntaxFacts.IsPredefinedType(tk)) 7968if (SyntaxFacts.IsPredefinedType(PeekToken(2).Kind)) 11303&& !SyntaxFacts.IsPredefinedType(tk.Kind)
Parser\LanguageParser_Patterns.cs (1)
79if (SyntaxFacts.IsPredefinedType(tk))
Syntax\SyntaxFacts.cs (1)
450return node.IsIdentifierVar() || IsPredefinedType(node.Kind);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
CSharpTypeStyleHelper.State.cs (1)
88/// to var. <see cref="SyntaxFacts.IsPredefinedType(SyntaxKind)"/> considers string
TypeStyleHelper.cs (1)
227? SyntaxFacts.IsPredefinedType(predefinedType.Keyword.Kind())
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
CSharpTypeStyleHelper.State.cs (1)
88/// to var. <see cref="SyntaxFacts.IsPredefinedType(SyntaxKind)"/> considers string
TypeStyleHelper.cs (1)
227? SyntaxFacts.IsPredefinedType(predefinedType.Keyword.Kind())