8 references to ExtraArguments
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder_Crefs.cs (1)
973
callingConvention: candidateMethodIsVararg ? Microsoft.Cci.CallingConvention.
ExtraArguments
: Microsoft.Cci.CallingConvention.HasThis,
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (2)
779
if (CallingConvention.IsCallingConvention(CallingConvention.
ExtraArguments
))
811
var isVararg = CallingConvention.IsCallingConvention(CallingConvention.
ExtraArguments
);
Symbols\Source\SourceMemberMethodSymbol.cs (1)
717
var cc = IsVararg ? Cci.CallingConvention.
ExtraArguments
: Cci.CallingConvention.Default;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
CodeGen\CodeGenFunctionPointersTests.cs (2)
987
VerifyFunctionPointerSymbol(prop.Type, CallingConvention.
ExtraArguments
,
995
VerifyFunctionPointerSymbol(type, CallingConvention.
ExtraArguments
,
Emit\NoPiaEmbedTypes.cs (1)
1434
Assert.Equal(CallingConvention.
ExtraArguments
| CallingConvention.HasThis, m13.CallingConvention);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
FunctionPointerUtilities.cs (1)
86
Assert.Equal(symbol.IsVararg, symbol.CallingConvention.IsCallingConvention(CallingConvention.
ExtraArguments
));