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