6 references to CallingConvention
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1542
=> node.Update(VisitToken(node.DelegateKeyword), VisitToken(node.AsteriskToken), (FunctionPointerCallingConventionSyntax?)Visit(node.
CallingConvention
), (FunctionPointerParameterListSyntax?)Visit(node.ParameterList) ?? throw new ArgumentNullException("parameterList"));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
565
if (delegateKeyword != this.DelegateKeyword || asteriskToken != this.AsteriskToken || callingConvention != this.
CallingConvention
|| parameterList != this.ParameterList)
575
public FunctionPointerTypeSyntax WithDelegateKeyword(SyntaxToken delegateKeyword) => Update(delegateKeyword, this.AsteriskToken, this.
CallingConvention
, this.ParameterList);
576
public FunctionPointerTypeSyntax WithAsteriskToken(SyntaxToken asteriskToken) => Update(this.DelegateKeyword, asteriskToken, this.
CallingConvention
, this.ParameterList);
578
public FunctionPointerTypeSyntax WithParameterList(FunctionPointerParameterListSyntax parameterList) => Update(this.DelegateKeyword, this.AsteriskToken, this.
CallingConvention
, parameterList);
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
26
CallingConvention callingConvention = getCallingConvention(typeBinder.Compilation, syntax.
CallingConvention
, customModifiers, diagnostics);