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