8 references to ThisCall
Microsoft.CodeAnalysis.CSharp (3)
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
735
actualCallKind = Cci.CallingConvention.
ThisCall
;
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
154
{ ValueText: "Thiscall" } => CallingConvention.
ThisCall
,
Symbols\Source\SourceNamedTypeSymbol_Extension.cs (1)
320
Cci.CallingConvention.
ThisCall
=> "unmanaged thiscall ",
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenFunctionPointersTests.cs (2)
77
[InlineData("unmanaged[Thiscall]", CallingConvention.
ThisCall
)]
81
[InlineData("unmanaged[@Thiscall]", CallingConvention.
ThisCall
)]
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (3)
Symbols\FunctionPointerTypeSymbolTests.cs (3)
227
[InlineData("unmanaged[Thiscall]", CallingConvention.
ThisCall
)]
1988
var funcPtrConventionThisCall = createTypeSymbol(customModifiers: default, CallingConvention.
ThisCall
);
1989
var funcPtrConventionThisCallWithThiscallMod = createTypeSymbol(customModifiers: ImmutableArray.Create(thiscallMod), CallingConvention.
ThisCall
);