Home
last modified time | relevance | path

Searched refs:InitLocals (Results 1 – 25 of 87) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit/tests/ConstructorBuilder/
H A DConstructorBuilderInitLocals.cs12 public void InitLocals() in InitLocals() method in System.Reflection.Emit.Tests.ConstructorBuilderInitLocals
18 Assert.True(constructor.InitLocals); in InitLocals()
20 constructor.InitLocals = false; in InitLocals()
21 Assert.False(constructor.InitLocals); in InitLocals()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/src/System/Reflection/Metadata/Ecma335/Encoding/
H A DMethodBodyStreamEncoder.cs52 MethodBodyAttributes attributes = MethodBodyAttributes.InitLocals) in AddMethodBody()
121 MethodBodyAttributes attributes = MethodBodyAttributes.InitLocals) in AddMethodBody()
166 const byte InitLocals = 0x10; in SerializeHeader()
189 if ((attributes & MethodBodyAttributes.InitLocals) != 0) in SerializeHeader()
191 flags |= InitLocals; in SerializeHeader()
H A DMethodBodyAttributes.cs11 InitLocals = 1, enumerator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit/tests/MethodBuilder/
H A DMethodBuilderInitLocals.cs16 Assert.True(method.InitLocals); in InitLocals_Get_ReturnsTrue()
27 method.InitLocals = newInitLocals; in InitLocals_Set()
28 Assert.Equal(newInitLocals, method.InitLocals); in InitLocals_Set()
/dports/lang/mono/mono-5.10.1.57/external/ikvm/reflect/Emit/
H A DConstructorBuilder.cs122 public bool InitLocals property in IKVM.Reflection.Emit.ConstructorBuilder
124 get { return methodBuilder.InitLocals; }
125 set { methodBuilder.InitLocals = value; }
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit.Lightweight/tests/
H A DDynamicMethodInitLocals.cs17 method.InitLocals = newInitLocals; in InitLocals_Set_ReturnsNewValue()
18 Assert.Equal(newInitLocals, method.InitLocals); in InitLocals_Set_ReturnsNewValue()
H A DUtilities.cs44 Assert.True(method.InitLocals); in VerifyMethod()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/reflection/emit/
H A Dconstructorbuilder.cs306 public bool InitLocals property in System.Reflection.Emit.ConstructorBuilder
308 get { return m_methodBuilder.InitLocals; }
309 set { m_methodBuilder.InitLocals = value; }
/dports/lang/mono/mono-5.10.1.57/mcs/tools/cil-strip/Mono.Cecil.Cil/
H A DMethodHeader.cs35 InitLocals = 0x10 enumerator
H A DMethodBody.cs62 public bool InitLocals { property in Mono.Cecil.Cil.MethodBody
141 nb.InitLocals = body.InitLocals; in Clone()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Reflection/
H A DMethodBody.cs18 public virtual bool InitLocals => false; field in System.Reflection.MethodBody
/dports/lang/mono/mono-5.10.1.57/external/linker/corebuild/integration/ILLink.CustomSteps/
H A DClearInitLocals.cs17 method.Body.InitLocals = false; in ProcessAssembly()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Reflection.Emit/
H A DConstructorBuilder.pns.cs35 public bool InitLocals { get; set; } property in System.Reflection.Emit.ConstructorBuilder
H A DMethodBuilder.pns.cs35 public bool InitLocals { get; set; } property in System.Reflection.Emit.MethodBuilder
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Reflection/
H A DMethodBody.cs74 bool InitLocals { property in System.Reflection.MethodBody
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Reflection.Emit.Lightweight/
H A DDynamicMethod.cs93 public bool InitLocals { get; set; } property in System.Reflection.Emit.DynamicMethod
/dports/lang/mono/mono-5.10.1.57/external/corert/src/ILVerify/src/
H A DVerifierError.cs156InitLocals, // initlocals must be set for verifiable methods with one or more … enumerator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime/tests/System/Reflection/
H A DMethodBodyTests.cs22 Assert.True(mb.InitLocals); // local variables are initialized in Test_MethodBody_ExceptionHandlingClause()
H A DMethodBaseTests.cs72 Assert.True(mb.InitLocals); // local variables are initialized in TestMethodBody()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit.Lightweight/ref/
H A DSystem.Reflection.Emit.Lightweight.cs24 public bool InitLocals { get { throw null; } set { } } property in System.Reflection.Emit.DynamicMethod
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Reflection.Emit/
H A DConstructorBuilderTest.cs87 public void InitLocals () in InitLocals() method in MonoTests.System.Reflection.Emit.ConstructorBuilderTest
92 Assert.IsTrue (cb.InitLocals, "#1"); in InitLocals()
93 cb.InitLocals = false; in InitLocals()
94 Assert.IsFalse (cb.InitLocals, "#2"); in InitLocals()
/dports/lang/mono/mono-5.10.1.57/external/ikvm/reflect/
H A DMethodBody.cs138 public bool InitLocals property in IKVM.Reflection.MethodBody
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A DSystem.Reflection.Emit.Lightweight.cs32 …public bool InitLocals { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw n… property in System.Reflection.Emit.DynamicMethod
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/reflection/
H A Dmethodbody.cs133 public virtual bool InitLocals { get { return m_initLocals; } } property in System.Reflection.MethodBody
/dports/lang/mono/mono-5.10.1.57/external/cecil-legacy/Mono.Cecil.Cil/
H A DMethodBody.cs63 public bool InitLocals { property in Mono.Cecil.Cil.MethodBody

1234