23 references to HasThis
Microsoft.CodeAnalysis (4)
CodeGen\ArrayMembers.cs (1)
335public Cci.CallingConvention CallingConvention => Cci.CallingConvention.HasThis;
Emit\NoPia\VtblGap.cs (1)
227get { return Cci.CallingConvention.Default | Cci.CallingConvention.HasThis; }
PEWriter\MetadataWriter.cs (2)
1137isInstanceMethod: (methodReference.CallingConvention & CallingConvention.HasThis) != 0); 1282isInstanceProperty: (propertyDef.CallingConvention & CallingConvention.HasThis) != 0);
Microsoft.CodeAnalysis.CSharp (19)
Binder\Binder_Crefs.cs (1)
991callingConvention: candidateMethodIsVararg ? Microsoft.Cci.CallingConvention.ExtraArguments : Microsoft.Cci.CallingConvention.HasThis,
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
191get { return Cci.CallingConvention.HasThis; }
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs (1)
160get { return Microsoft.Cci.CallingConvention.HasThis; }
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
86get { return Cci.CallingConvention.HasThis; }
Symbols\Extensions\SourceExtensionImplementationMethodSymbol.cs (1)
112return (_originalMethod.CallingConvention & (~Cci.CallingConvention.HasThis)) |
Symbols\MemberSignatureComparer.cs (1)
848return member.IsStatic ? 0 : Cci.CallingConvention.HasThis;
Symbols\Source\SourceMemberContainerSymbol.cs (6)
5010Cci.CallingConvention.HasThis, 5057Cci.CallingConvention.HasThis, 5110Cci.CallingConvention.HasThis, 5170Cci.CallingConvention.HasThis, 5344Cci.CallingConvention.HasThis, 5437Cci.CallingConvention.HasThis,
Symbols\Source\SourceMemberMethodSymbol.cs (1)
726cc |= Cci.CallingConvention.HasThis;
Symbols\Source\SourcePropertySymbolBase.cs (1)
665get { return (IsStatic ? 0 : Microsoft.Cci.CallingConvention.HasThis); }
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
205get { return Microsoft.Cci.CallingConvention.HasThis; }
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
255get { return Cci.CallingConvention.HasThis; }
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
174return Cci.CallingConvention.HasThis;
Symbols\Synthesized\SynthesizedPropertySymbol.cs (2)
46internal override CallingConvention CallingConvention => CallingConvention.HasThis; 110internal override CallingConvention CallingConvention => CallingConvention.HasThis;