Home
last modified time | relevance | path

Searched refs:CodeTypeOfExpression (Results 1 – 25 of 63) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeTypeOfExpressionTest.cs43 CodeTypeOfExpression ctoe = new CodeTypeOfExpression (); in Constructor0()
62 CodeTypeOfExpression ctoe = new CodeTypeOfExpression (type1); in Constructor1()
75 ctoe = new CodeTypeOfExpression ((CodeTypeReference) null); in Constructor1()
85 CodeTypeOfExpression ctoe = new CodeTypeOfExpression (baseType); in Constructor2()
89 ctoe = new CodeTypeOfExpression ((string) null); in Constructor2()
99 CodeTypeOfExpression ctoe = new CodeTypeOfExpression (type); in Constructor3()
108 CodeTypeOfExpression ctoe = new CodeTypeOfExpression ((Type) null); in Constructor3_NullType()
H A DCodeTypeOfExpressionCas.cs55 CodeTypeOfExpression ctm = new CodeTypeOfExpression (); in Constructor0_Deny_Unrestricted()
65 CodeTypeOfExpression ctm = new CodeTypeOfExpression (type); in Constructor1_Deny_Unrestricted()
74 CodeTypeOfExpression ctm = new CodeTypeOfExpression ("System.Int32"); in Constructor2_Deny_Unrestricted()
83 CodeTypeOfExpression ctm = new CodeTypeOfExpression (typeof (int)); in Constructor3_Deny_Unrestricted()
92 ConstructorInfo ci = typeof (CodeTypeOfExpression).GetConstructor (new Type[0]); in LinkDemand_Deny_Unrestricted()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeStatements/
H A DCodeTypeOfExpressionTests.cs10 public class CodeTypeOfExpressionTests : CodeObjectTestBase<CodeTypeOfExpression>
15 var typeofExpression = new CodeTypeOfExpression(); in Ctor_Default()
23 var typeofExpression = new CodeTypeOfExpression(type); in Ctor_CodeTypeReference_CodeExpression()
38 var typeofExpression = new CodeTypeOfExpression(type); in Ctor_String_CodeExpression()
53 var typeofExpression = new CodeTypeOfExpression(type); in Ctor_Type_CodeExpression()
60 …AssertExtensions.Throws<ArgumentNullException>("type", () => new CodeTypeOfExpression((Type)null)); in Ctor_NullType_ThrowsArgumentNullException()
67 var typeofExpression = new CodeTypeOfExpression(); in Type_Set_Get_ReturnsExpected()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/
H A DCodeTypeOfExpression.cs8 public class CodeTypeOfExpression : CodeExpression class
12 public CodeTypeOfExpression() { } in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
14 public CodeTypeOfExpression(CodeTypeReference type) in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
19 public CodeTypeOfExpression(string type) in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
24 public CodeTypeOfExpression(Type type) in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/
H A DCodeTypeOfExpression.cs27 public class CodeTypeOfExpression : CodeExpression { class
35 public CodeTypeOfExpression() { in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
43 public CodeTypeOfExpression(CodeTypeReference type) { in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
50 public CodeTypeOfExpression(string type) { in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
57 public CodeTypeOfExpression(Type type) { in CodeTypeOfExpression() method in System.CodeDom.CodeTypeOfExpression
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity.Design/System/Data/EntityModel/Emitters/
H A DAssociationTypeEmitter.cs55 private CodeTypeOfExpression GetEndTypeCodeExpression(AssociationEndMember end) in GetEndTypeCodeExpression()
57 …return new CodeTypeOfExpression(Generator.GetFullyQualifiedTypeReference(((RefType)end.TypeUsage.E… in GetEndTypeCodeExpression()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Serializer/
H A DDependencyObjectCodeDomSerializer.cs107 …mName", new CodePrimitiveExpression(dependencyProperty.Name), new CodeTypeOfExpression(dependencyP… in Serialize()
202 … retVal.Add(new CodeAssignStatement(propertyRef, new CodeTypeOfExpression(typeName))); in Serialize()
208 CodeExpression param2 = new CodeTypeOfExpression(typeName); in Serialize()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Compiler/TypeSystem/
H A DAttributeInfo.cs203 if (this.ArgumentValues[argumentIndex] is CodeTypeOfExpression) in GetArgumentValueAs()
204 …eNameFromCodeTypeReference((this.ArgumentValues[argumentIndex] as CodeTypeOfExpression).Type, null… in GetArgumentValueAs()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Services/System/Web/Services/Description/
H A DHttpProtocolImporter.cs144 formatterTypes[0] = new CodeTypeOfExpression(typeof(NopReturnReader).FullName); in GenerateMethod()
147 formatterTypes[0] = new CodeTypeOfExpression(method.MimeReturn.ReaderType.FullName); in GenerateMethod()
151 … formatterTypes[1] = new CodeTypeOfExpression(method.MimeParameters.WriterType.FullName); in GenerateMethod()
153 formatterTypes[1] = new CodeTypeOfExpression(typeof(UrlParameterWriter).FullName); in GenerateMethod()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Serialization/
H A DCodeExporter.cs173 …include.Arguments.Add(new CodeAttributeArgument(new CodeTypeOfExpression(derived.TypeDesc.FullName… in ExportRoot()
183 …include.Arguments.Add(new CodeAttributeArgument(new CodeTypeOfExpression(arrayMapping.TypeDesc.Ful… in ExportRoot()
261 …attribute.Arguments.Add(new CodeAttributeArgument(new CodeTypeOfExpression(derived.TypeDesc.FullNa… in AddIncludeMetadata()
H A DXmlCodeExporter.cs236 typeofValue = new CodeTypeOfExpression(type.FullName); in GetDefaultValueArguments()
249 typeofValue = new CodeTypeOfExpression(type.FullName); in GetDefaultValueArguments()
270 typeofValue = new CodeTypeOfExpression(type.FullName); in GetDefaultValueArguments()
276 typeofValue = new CodeTypeOfExpression(type.FullName); in GetDefaultValueArguments()
751 … attribute.Arguments.Add(new CodeAttributeArgument(new CodeTypeOfExpression(typeDesc.FullName))); in ExportText()
782 …attribute.Arguments.Add(new CodeAttributeArgument(new CodeTypeOfExpression("System.Nullable`1[" + … in ExportMetadata()
786 … attribute.Arguments.Add(new CodeAttributeArgument(new CodeTypeOfExpression(typeDesc.FullName))); in ExportMetadata()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DPageThemeCompiler.cs236 new CodeTypeOfExpression (controlType), in CreateStaticFields()
271 new CodeTypeOfExpression (controlType), in CreateConstructor()
H A DRouteValueExpressionBuilder.cs69 parameters.Add (new CodeTypeOfExpression (new CodeTypeReference (entry.DeclaringType))); in GetCodeExpression()
H A DAppSettingsExpressionBuilder.cs88 expressionArray[1] = new CodeTypeOfExpression(entry.Type); in GetCodeExpression()
H A DResourceExpressionBuilder.cs148 new CodeTypeOfExpression (new CodeTypeReference (declaringType)), in CreateGetLocalResourceObject()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Compilation/
H A DResourceExpressionBuilder.cs130 expr.Parameters.Add(new CodeTypeOfExpression(entry.DeclaringType)); in GetAppResCodeExpression()
148 expr.Parameters.Add(new CodeTypeOfExpression(entry.DeclaringType)); in GetPageResCodeExpression()
H A DAppSettingsExpressionBuilder.cs41 new CodeTypeOfExpression(entry.DeclaringType), in GetCodeExpression()
H A DRouteValueExpressionBuilder.cs35 new CodeTypeOfExpression(new CodeTypeReference(entry.ControlType)), in GetCodeExpression()
H A DPageThemeCodeDomTreeGenerator.cs72 cmie.Parameters.Add(new CodeTypeOfExpression(controlType)); in BuildControlSkinAssignmentStatement()
96 valueExpr.Parameters.Add(new CodeTypeOfExpression(controlType)); in BuildControlSkinAssignmentStatement()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/XamlBuildTask/Microsoft/Build/Tasks/Xaml/
H A DClassGenerator.cs279 codeExp = new CodeTypeOfExpression(paramInfo.TextValue); in GetCodeExpressionForAttributeArgument()
487 new CodeTypeOfExpression() in GenerateInitializeMethod()
589 new CodeTypeOfExpression(classData.Name) in GetInitializeMethodTryStatements()
722 new CodeTypeOfExpression() in GenerateFindResourceMethod()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/
H A DCodeValidator.cs807 else if (e is CodeTypeOfExpression) in ValidateExpression()
809 ValidateTypeOfExpression((CodeTypeOfExpression)e); in ValidateExpression()
987 private static void ValidateTypeOfExpression(CodeTypeOfExpression e) in ValidateTypeOfExpression()
H A DCodeGenerator.cs594 else if (e is CodeTypeOfExpression) in GenerateExpression()
596 GenerateTypeOfExpression((CodeTypeOfExpression)e); in GenerateExpression()
1422 protected virtual void GenerateTypeOfExpression(CodeTypeOfExpression e) in GenerateTypeOfExpression()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/compiler/
H A DCodeValidator.cs657 else if (e is CodeTypeOfExpression) { in ValidateExpression()
658 ValidateTypeOfExpression((CodeTypeOfExpression)e); in ValidateExpression()
799 private static void ValidateTypeOfExpression(CodeTypeOfExpression e) { in ValidateTypeOfExpression()
H A DCodeGenerator.cs671 else if (e is CodeTypeOfExpression) { in GenerateExpression()
672 GenerateTypeOfExpression((CodeTypeOfExpression)e); in GenerateExpression()
1604 protected virtual void GenerateTypeOfExpression(CodeTypeOfExpression e) { in GenerateTypeOfExpression()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity.Design/System/Data/Entity/Design/EntityViewGeneration/
H A DEntityViewGenerator.cs372CodeTypeOfExpression viewGenTypeOfExpression = new CodeTypeOfExpression(EntityViewGenerationConsta… in GenerateAndStoreViews()

123