27 references to Standard
mscorlib (22)
system\reflection\callingconventions.cs (1)
29
Any =
Standard
| VarArgs,
system\reflection\emit\constructorbuilder.cs (1)
260
return CallingConventions.
Standard
;
system\reflection\emit\customattributebuilder.cs (2)
129
if ((con.CallingConvention & CallingConventions.
Standard
) != CallingConventions.
Standard
)
system\reflection\emit\dynamicmethod.cs (7)
87
CallingConventions.
Standard
,
108
CallingConventions.
Standard
,
132
CallingConventions.
Standard
,
157
CallingConventions.
Standard
,
208
CallingConventions.
Standard
,
233
CallingConventions.
Standard
,
281
if (callingConvention != CallingConventions.
Standard
&& callingConvention != CallingConventions.VarArgs)
system\reflection\emit\modulebuilder.cs (1)
1466
return DefineGlobalMethod(name, attributes, CallingConventions.
Standard
, returnType, parameterTypes);
system\reflection\emit\signaturehelper.cs (1)
33
return GetMethodSigHelper(mod, CallingConventions.
Standard
, returnType, null, null, parameterTypes, null, null);
system\reflection\emit\typebuilder.cs (4)
1655
return DefineMethod(name, attributes, CallingConventions.
Standard
, returnType, parameterTypes);
1662
return DefineMethod(name, attributes, CallingConventions.
Standard
, null, null);
1772
ConstructorInfo.TypeConstructorName, attr, CallingConventions.
Standard
, null, m_module, this);
1832
constBuilder = DefineConstructor(attributes, CallingConventions.
Standard
, null);
system\reflection\methodbase.cs (1)
181
public virtual CallingConventions CallingConvention { get { return CallingConventions.
Standard
; } }
system\rttype.cs (2)
2534
if ((callConv & CallingConventions.
Standard
) != 0 &&
2535
(methodBase.CallingConvention & CallingConventions.
Standard
) == 0)
system\runtime\interopservices\tceadaptergen\eventsinkhelperwriter.cs (2)
145
CallingConventions.
Standard
,
263
CallingConventions.
Standard
,
System (3)
regex\system\text\regularexpressions\RegexCompiler.cs (3)
3203
defCtorBuilder = _typebuilder.DefineConstructor(ma, CallingConventions.
Standard
, noTypeArray);
3280
tmoutCtorBuilder = _typebuilder.DefineConstructor(ma, CallingConventions.
Standard
, new Type[] { typeof(TimeSpan) });
3450
CallingConventions conventions = CallingConventions.
Standard
;
System.Core (1)
Microsoft\Scripting\Compiler\DelegateHelpers.cs (1)
37
builder.DefineConstructor(CtorAttributes, CallingConventions.
Standard
, _DelegateCtorSignature).SetImplementationFlags(ImplAttributes);
System.Data.Entity (1)
System\Data\Objects\Internal\EntityProxyFactory.cs (1)
1665
ConstructorBuilder proxyConstructor = typeBuilder.DefineConstructor(constructorAttributes, CallingConventions.
Standard
| CallingConventions.HasThis, parameterTypes);