40 references to HasThis
Microsoft.CodeAnalysis (4)
CodeGen\ArrayMembers.cs (1)
336
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)
1143
isInstanceMethod: (methodReference.CallingConvention & CallingConvention.
HasThis
) != 0);
1283
isInstanceProperty: (propertyDef.CallingConvention & CallingConvention.
HasThis
) != 0);
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Crefs.cs (1)
790
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\MemberSignatureComparer.cs (1)
785
return member.IsStatic ? 0 : Cci.CallingConvention.
HasThis
;
Symbols\Source\SourceMemberContainerSymbol.cs (6)
4025
Cci.CallingConvention.
HasThis
,
4071
Cci.CallingConvention.
HasThis
,
4119
Cci.CallingConvention.
HasThis
,
4178
Cci.CallingConvention.
HasThis
,
4352
Cci.CallingConvention.
HasThis
,
4445
Cci.CallingConvention.
HasThis
,
Symbols\Source\SourceMemberMethodSymbol.cs (1)
591
cc |= Cci.CallingConvention.
HasThis
;
Symbols\Source\SourcePropertySymbolBase.cs (1)
558
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
;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (6)
Emit\NoPiaEmbedTypes.cs (6)
1366
Assert.Equal(CallingConvention.Default | CallingConvention.
HasThis
, ctor.CallingConvention);
1382
Assert.Equal(CallingConvention.Default | CallingConvention.
HasThis
, begin.CallingConvention);
1398
Assert.Equal(CallingConvention.Default | CallingConvention.
HasThis
, end.CallingConvention);
1413
Assert.Equal(CallingConvention.Default | CallingConvention.
HasThis
, invoke.CallingConvention);
1434
Assert.Equal(CallingConvention.ExtraArguments | CallingConvention.
HasThis
, m13.CallingConvention);
1496
Assert.Equal(CallingConvention.Default | CallingConvention.
HasThis
, m17.CallingConvention);
Microsoft.CodeAnalysis.VisualBasic (8)
Binding\Binder_XmlLiterals.vb (1)
1760
Return Microsoft.Cci.CallingConvention.
HasThis
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType_PropertySymbol.vb (1)
127
Return Microsoft.Cci.CallingConvention.
HasThis
Symbols\Source\SourceMethodSymbol.vb (1)
735
Return If(IsShared, CallingConvention.Default, CallingConvention.
HasThis
) Or
Symbols\Source\SourcePropertySymbol.vb (1)
722
Return (If(IsShared, Microsoft.Cci.CallingConvention.Default, Microsoft.Cci.CallingConvention.
HasThis
))
Symbols\SynthesizedSymbols\SynthesizedDelegateMethodSymbol.vb (1)
88
Return Microsoft.Cci.CallingConvention.
HasThis
Symbols\SynthesizedSymbols\SynthesizedGlobalMethodBase.vb (1)
203
Return If(IsShared, Microsoft.Cci.CallingConvention.Default, Microsoft.Cci.CallingConvention.
HasThis
)
Symbols\SynthesizedSymbols\SynthesizedMethodBase.vb (1)
39
Return If(IsShared, Microsoft.Cci.CallingConvention.Default, Microsoft.Cci.CallingConvention.
HasThis
) Or
Symbols\SynthesizedSymbols\SynthesizedPropertyBase.vb (1)
70
Return Microsoft.Cci.CallingConvention.
HasThis
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (6)
Emit\NoPiaEmbedTypes.vb (6)
1193
Assert.Equal(Microsoft.Cci.CallingConvention.Default Or Microsoft.Cci.CallingConvention.
HasThis
, ctor.CallingConvention)
1209
Assert.Equal(Microsoft.Cci.CallingConvention.Default Or Microsoft.Cci.CallingConvention.
HasThis
, begin.CallingConvention)
1225
Assert.Equal(Microsoft.Cci.CallingConvention.Default Or Microsoft.Cci.CallingConvention.
HasThis
, [end].CallingConvention)
1240
Assert.Equal(Microsoft.Cci.CallingConvention.Default Or Microsoft.Cci.CallingConvention.
HasThis
, invoke.CallingConvention)
1261
Assert.Equal(Microsoft.Cci.CallingConvention.
HasThis
, m13.CallingConvention)
1324
Assert.Equal(Microsoft.Cci.CallingConvention.Default Or Microsoft.Cci.CallingConvention.
HasThis
, m17.CallingConvention)