Home
last modified time | relevance | path

Searched refs:CodeStatementCollection (Results 1 – 25 of 85) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeStatementCollectionTest.cs42 CodeStatementCollection coll = new CodeStatementCollection (); in Constructor0()
57 CodeStatementCollection coll = new CodeStatementCollection ( in Constructor1()
72 CodeStatementCollection coll = new CodeStatementCollection ( in Constructor1_NullItem()
79 CodeStatementCollection coll = new CodeStatementCollection ( in Constructor1_Null()
89 CodeStatementCollection c = new CodeStatementCollection (); in Constructor2()
93 CodeStatementCollection coll = new CodeStatementCollection (c); in Constructor2()
103 CodeStatementCollection coll = new CodeStatementCollection ( in Constructor2_Null()
113 CodeStatementCollection coll = new CodeStatementCollection (); in Add()
126 CodeStatementCollection coll = new CodeStatementCollection (); in Add_Null()
136 CodeStatementCollection coll = new CodeStatementCollection (); in Insert()
[all …]
H A DCodeStatementCollectionCas.cs65 CodeStatementCollection coll = new CodeStatementCollection (); in Constructor0_Deny_Unrestricted()
81 CodeStatementCollection coll = new CodeStatementCollection (array); in Constructor1_Deny_Unrestricted()
97 CodeStatementCollection c = new CodeStatementCollection (); in Constructor2_Deny_Unrestricted()
98 CodeStatementCollection coll = new CodeStatementCollection (c); in Constructor2_Deny_Unrestricted()
114 ConstructorInfo ci = typeof (CodeStatementCollection).GetConstructor (new Type[0]); in LinkDemand_Deny_Unrestricted()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeCollections/
H A DCodeStatementCollectionTests.cs10 …public class CodeStatementCollectionTests : CodeCollectionTestBase<CodeStatementCollection, CodeSt…
12 public override CodeStatementCollection Ctor() => new CodeStatementCollection(); in Ctor()
13 …public override CodeStatementCollection CtorArray(CodeStatement[] array) => new CodeStatementColle…
14 …public override CodeStatementCollection CtorCollection(CodeStatementCollection collection) => new
16 public override int Count(CodeStatementCollection collection) => collection.Count;
18 …public override CodeStatement GetItem(CodeStatementCollection collection, int index) => collection… in GetItem()
22 …public override void AddRange(CodeStatementCollection collection, CodeStatementCollection value) =… in AddRange()
24 …public override object Add(CodeStatementCollection collection, CodeStatement obj) => collection.Ad… in Add()
28 …public override void Remove(CodeStatementCollection collection, CodeStatement value) => collection… in Remove()
30 …public override int IndexOf(CodeStatementCollection collection, CodeStatement value) => collection… in IndexOf()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Compilation/
H A DDataBindingExpressionBuilder.cs32 …ropertyType, ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatemen… in BuildEvalExpression()
48 CodeStatementCollection evalStatements = new CodeStatementCollection(); in BuildEvalExpression()
65 …ropertyType, ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatemen… in BuildPropertySetExpression()
81 …ressionSetup(ControlBuilder controlBuilder, CodeStatementCollection methodStatements, CodeStatemen… in BuildExpressionSetup()
114 …pressions(ControlBuilder controlBuilder, CodeStatementCollection declarationStatements, CodeStatem… in GenerateItemTypeExpressions()
134 …CodeExpression controlReference, CodeStatementCollection methodStatements, CodeStatementCollection in BuildExpression()
140 …CodeExpression controlReference, CodeStatementCollection methodStatements, CodeStatementCollection in BuildExpressionStatic()
H A DBaseTemplateCodeDomTreeGenerator.cs336 CodeStatementCollection currentStmts; in BuildBuildMethodInternal()
406 CodeStatementCollection currentStmts; in BuildBuildMethodInternal()
737 CodeStatementCollection currentStmts; in BuildBuildMethodInternal()
846 CodeStatementCollection currentStmts; in BuildBuildMethodInternal()
992 CodeStatementCollection statements = new CodeStatementCollection(); in BuildExtractMethod()
1241 CodeStatementCollection topMethodStatements = new CodeStatementCollection(); in BuildPropertyBindingMethod()
1242 CodeStatementCollection otherMethodStatements = new CodeStatementCollection(); in BuildPropertyBindingMethod()
1348 CodeStatementCollection currentStmts; in BuildPropertyBindingMethod()
1743 CodeStatementCollection topStmts, in HandleDeviceFilterConditional()
1744 ref CodeStatementCollection currentStmts, in HandleDeviceFilterConditional()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Design/System.ComponentModel.Design.Serialization/
H A DRootCodeDomSerializer.cs50 private CodeStatementCollection _initializers;
51 private CodeStatementCollection _begin;
52 private CodeStatementCollection _default;
53 private CodeStatementCollection _end;
66 _initializers = new CodeStatementCollection (); in CodeMap()
67 _begin = new CodeStatementCollection (); in CodeMap()
68 _default = new CodeStatementCollection (); in CodeMap()
69 _end = new CodeStatementCollection (); in CodeMap()
77 public void Add (CodeStatementCollection statements) in Add()
180 CodeStatementCollection statements = new CodeStatementCollection (); in Serialize()
[all …]
H A DCodeDomSerializer.cs76 CodeStatementCollection statements = new CodeStatementCollection (); in Serialize()
103 public virtual CodeStatementCollection SerializeMember (IDesignerSerializationManager manager, in SerializeMember()
113 CodeStatementCollection statements = new CodeStatementCollection (); in SerializeMember()
132 …public virtual CodeStatementCollection SerializeMemberAbsolute (IDesignerSerializationManager mana… in SerializeMemberAbsolute()
144 CodeStatementCollection result = this.SerializeMember (manager, owningObject, member); in SerializeMemberAbsolute()
162 CodeStatementCollection statements = codeObject as CodeStatementCollection; in Deserialize()
H A DPropertyCodeDomSerializer.cs46 …ationManager manager, object value, MemberDescriptor descriptor, CodeStatementCollection statement… in Serialize()
67 object instance, PropertyDescriptor descriptor, CodeStatementCollection statements) in SerializeNormalProperty()
111 PropertyDescriptor descriptor, CodeStatementCollection statements) in SerializeContentProperty()
129 CodeStatementCollection serializedStatements = serialized as CodeStatementCollection; in SerializeContentProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/
H A DCodeConditionStatement.cs29 private CodeStatementCollection trueStatments = new CodeStatementCollection();
30 private CodeStatementCollection falseStatments = new CodeStatementCollection();
83 public CodeStatementCollection TrueStatements {
97 public CodeStatementCollection FalseStatements {
H A DCodeTryCatchFinallyStatement.cs27 private CodeStatementCollection tryStatments = new CodeStatementCollection();
28 private CodeStatementCollection finallyStatments = new CodeStatementCollection();
68 public CodeStatementCollection TryStatements {
91 public CodeStatementCollection FinallyStatements {
H A DCodeMemberProperty.cs32 private CodeStatementCollection getStatements = new CodeStatementCollection();
33 private CodeStatementCollection setStatements = new CodeStatementCollection();
118 public CodeStatementCollection GetStatements {
129 public CodeStatementCollection SetStatements {
H A DCodeStatementCollection.cs25 public class CodeStatementCollection : CollectionBase { class
32 public CodeStatementCollection() { in CodeStatementCollection() method in System.CodeDom.CodeStatementCollection
40 public CodeStatementCollection(CodeStatementCollection value) { in CodeStatementCollection() method in System.CodeDom.CodeStatementCollection
49 public CodeStatementCollection(CodeStatement[] value) { in CodeStatementCollection() method in System.CodeDom.CodeStatementCollection
98 public void AddRange(CodeStatementCollection value) { in AddRange()
H A DCodeIterationStatement.cs31 private CodeStatementCollection statements = new CodeStatementCollection();
104 public CodeStatementCollection Statements {
H A DCodeCatchClause.cs26 private CodeStatementCollection statements;
94 public CodeStatementCollection Statements {
97 statements = new CodeStatementCollection();
H A DCodeMemberMethod.cs30 private CodeStatementCollection statements = new CodeStatementCollection();
87 public CodeStatementCollection Statements {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/
H A DCodeStatementCollection.cs10 public class CodeStatementCollection : CollectionBase class
12 public CodeStatementCollection() { } in CodeStatementCollection() method in System.CodeDom.CodeStatementCollection
14 public CodeStatementCollection(CodeStatementCollection value) in CodeStatementCollection() method in System.CodeDom.CodeStatementCollection
19 public CodeStatementCollection(CodeStatement[] value) in CodeStatementCollection() method in System.CodeDom.CodeStatementCollection
47 public void AddRange(CodeStatementCollection value) in AddRange()
H A DCodeConditionStatement.cs27 public CodeStatementCollection TrueStatements { get; } = new CodeStatementCollection();
29 public CodeStatementCollection FalseStatements { get; } = new CodeStatementCollection();
H A DCodeTryCatchFinallyStatement.cs25 public CodeStatementCollection TryStatements { get; } = new CodeStatementCollection();
29 public CodeStatementCollection FinallyStatements { get; } = new CodeStatementCollection();
H A DCodeMemberProperty.cs51 public CodeStatementCollection GetStatements { get; } = new CodeStatementCollection();
53 public CodeStatementCollection SetStatements { get; } = new CodeStatementCollection();
H A DCodeCatchClause.cs10 private CodeStatementCollection _statements;
46 …public CodeStatementCollection Statements => _statements ?? (_statements = new CodeStatementCollec…
H A DCodeMemberMethod.cs11 private readonly CodeStatementCollection _statements = new CodeStatementCollection();
32 public CodeStatementCollection Statements
H A DCodeIterationStatement.cs26 public CodeStatementCollection Statements { get; } = new CodeStatementCollection();
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Serializer/
H A DSerializableTypeCodeDomSerializer.cs42 CodeStatementCollection statements = null; in Serialize()
56 statements = new CodeStatementCollection(); in Serialize()
61 if (result is CodeStatementCollection) in Serialize()
62 statements.AddRange(result as CodeStatementCollection); in Serialize()
88 statements = new CodeStatementCollection(); in Serialize()
103 …ion AddVariableExpression(IDesignerSerializationManager manager, CodeStatementCollection statement… in AddVariableExpression()
H A DSynchronizationHandlesCodeDomSerializer.cs27CodeStatementCollection statements = manager.Context[typeof(CodeStatementCollection)] as CodeState… in Serialize()
H A DDependencyObjectCodeDomSerializer.cs47 CodeStatementCollection retVal = null; in Serialize()
55 … retVal = componentSerializer.Serialize(manager, activity) as CodeStatementCollection; in Serialize()
59 retVal = base.Serialize(manager, obj) as CodeStatementCollection; in Serialize()
64 CodeStatementCollection codeStatements = new CodeStatementCollection(retVal); in Serialize()

1234