21 references to HasThis
Microsoft.CodeAnalysis (4)
CodeGen\ArrayMembers.cs (1)
335
public Cci.CallingConvention CallingConvention => Cci.CallingConvention.
HasThis
;
Emit\NoPia\VtblGap.cs (1)
227
get { return Cci.CallingConvention.Default | Cci.CallingConvention.
HasThis
; }
PEWriter\MetadataWriter.cs (2)
1137
isInstanceMethod: (methodReference.CallingConvention & CallingConvention.
HasThis
) != 0);
1282
isInstanceProperty: (propertyDef.CallingConvention & CallingConvention.
HasThis
) != 0);
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder_Crefs.cs (1)
988
callingConvention: candidateMethodIsVararg ? Microsoft.Cci.CallingConvention.ExtraArguments : Microsoft.Cci.CallingConvention.
HasThis
,
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
191
get { return Cci.CallingConvention.
HasThis
; }
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs (1)
158
get { return Microsoft.Cci.CallingConvention.
HasThis
; }
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
86
get { return Cci.CallingConvention.
HasThis
; }
Symbols\Extensions\SourceExtensionImplementationMethodSymbol.cs (1)
111
return (_originalMethod.CallingConvention & (~Cci.CallingConvention.
HasThis
)) |
Symbols\MemberSignatureComparer.cs (1)
836
return member.IsStatic ? 0 : Cci.CallingConvention.
HasThis
;
Symbols\Source\SourceMemberContainerSymbol.cs (6)
4877
Cci.CallingConvention.
HasThis
,
4924
Cci.CallingConvention.
HasThis
,
4977
Cci.CallingConvention.
HasThis
,
5037
Cci.CallingConvention.
HasThis
,
5211
Cci.CallingConvention.
HasThis
,
5304
Cci.CallingConvention.
HasThis
,
Symbols\Source\SourceMemberMethodSymbol.cs (1)
726
cc |= Cci.CallingConvention.
HasThis
;
Symbols\Source\SourcePropertySymbolBase.cs (1)
665
get { return (IsStatic ? 0 : Microsoft.Cci.CallingConvention.
HasThis
); }
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
205
get { return Microsoft.Cci.CallingConvention.
HasThis
; }
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
255
get { return Cci.CallingConvention.
HasThis
; }
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
174
return Cci.CallingConvention.
HasThis
;