Home
last modified time | relevance | path

Searched refs:PrivateImplementationType (Results 1 – 25 of 38) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeTypeMembers/
H A DCodeMemberEventTests.cs18 Assert.Null(memberEvent.PrivateImplementationType); in Ctor_Default()
33 var memberEvent = new CodeMemberEvent() { PrivateImplementationType = type }; in PrivateImplementationType_Set_Get_ReturnsExpected()
34 Assert.Equal(type, memberEvent.PrivateImplementationType); in PrivateImplementationType_Set_Get_ReturnsExpected()
H A DCodeMemberPropertyTests.cs18 Assert.Null(property.PrivateImplementationType); in Ctor_Default()
41 var property = new CodeMemberProperty() { PrivateImplementationType = type }; in PrivateImplementationType_Set_Get_ReturnsExpected()
42 Assert.Equal(type, property.PrivateImplementationType); in PrivateImplementationType_Set_Get_ReturnsExpected()
H A DCodeMemberMethodTests.cs21 Assert.Null(method.PrivateImplementationType); in Ctor_Default()
113 var method = new CodeMemberMethod() { PrivateImplementationType = type }; in PrivateImplementationType_Set_Get_ReturnsExpected()
114 Assert.Equal(type, method.PrivateImplementationType); in PrivateImplementationType_Set_Get_ReturnsExpected()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeMemberEventCas.cs57 Assert.IsNull (cme.PrivateImplementationType, "PrivateImplementationType"); in Constructor0_Deny_Unrestricted()
58 cme.PrivateImplementationType = new CodeTypeReference ("System.Int32"); in Constructor0_Deny_Unrestricted()
H A DCodeMemberMethodCas.cs58 Assert.IsNull (cmm.PrivateImplementationType, "PrivateImplementationType"); in Constructor0_Deny_Unrestricted()
59 cmm.PrivateImplementationType = new CodeTypeReference ("System.Int32"); in Constructor0_Deny_Unrestricted()
H A DCodeMemberPropertyCas.cs63 Assert.IsNull (cmp.PrivateImplementationType, "PrivateImplementationType"); in Constructor0_Deny_Unrestricted()
64 cmp.PrivateImplementationType = new CodeTypeReference ("System.Int32"); in Constructor0_Deny_Unrestricted()
H A DCodeTypeConstructorTest.cs79 Assert.IsNull (ctc.PrivateImplementationType, "#22"); in Constructor0()
H A DCodeMemberMethodTest.cs79 Assert.IsNull (cmm.PrivateImplementationType, "#22"); in Constructor0()
H A DCodeConstructorTest.cs79 Assert.IsNull (cc.PrivateImplementationType, "#22"); in Constructor0()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/Microsoft/VisualBasic/
H A DVBCodeGenerator.cs1435 if (e.PrivateImplementationType != null) in GenerateEvent()
1465 else if (e.PrivateImplementationType != null) in GenerateEvent()
1468 OutputType(e.PrivateImplementationType); in GenerateEvent()
1562 if (e.PrivateImplementationType != null) in GenerateMethod()
1571 if (e.PrivateImplementationType == null) in GenerateMethod()
1638 else if (e.PrivateImplementationType != null) in GenerateMethod()
1641 OutputType(e.PrivateImplementationType); in GenerateMethod()
1715 if (e.PrivateImplementationType != null) in GenerateProperty()
1723 if (e.PrivateImplementationType == null) in GenerateProperty()
1785 else if (e.PrivateImplementationType != null) in GenerateProperty()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom.Compiler/
H A DCodeGeneratorFromTypeTestBase.cs290 evt.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GenerateEventPrivateImplementationType()
304 evt.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GenerateEventImplementationTypeOrder()
527 property.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GeneratePropertyOverloads3()
541 property.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GeneratePropertyPrivateImplementationType()
558 property.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GeneratePropertyImplementationTypeOrder()
728 method.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GenerateMethodOverloads3()
742 method.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GenerateMethodPrivateImplementationType()
762 method.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GenerateMethodImplementationTypeOrder()
1061 typeCtor.PrivateImplementationType = new CodeTypeReference (typeof (int)); in GenerateTypeConstructor()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/microsoft/visualbasic/
H A DVBCodeProvider.cs1716 if (e.PrivateImplementationType != null) in GenerateEvent()
1742 else if (e.PrivateImplementationType != null) { in GenerateEvent()
1744 OutputType(e.PrivateImplementationType); in GenerateEvent()
1838 if (e.PrivateImplementationType != null) { in GenerateMethod()
1845 if (e.PrivateImplementationType == null) { in GenerateMethod()
1901 else if (e.PrivateImplementationType != null) { in GenerateMethod()
1903 OutputType(e.PrivateImplementationType); in GenerateMethod()
1974 if (e.PrivateImplementationType != null) in GenerateProperty()
1981 if (e.PrivateImplementationType == null) { in GenerateProperty()
2031 else if (e.PrivateImplementationType != null) { in GenerateProperty()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/
H A DCodeMemberEvent.cs21 public CodeTypeReference PrivateImplementationType { get; set; } property in System.CodeDom.CodeMemberEvent
H A DCodeMemberProperty.cs15 public CodeTypeReference PrivateImplementationType { get; set; } property in System.CodeDom.CodeMemberProperty
H A DCodeMemberMethod.cs58 public CodeTypeReference PrivateImplementationType { get; set; } property in System.CodeDom.CodeMemberMethod
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/
H A DCodeMemberEvent.cs58 public CodeTypeReference PrivateImplementationType { property in System.CodeDom.CodeMemberEvent
H A DCodeMemberProperty.cs40 public CodeTypeReference PrivateImplementationType { property in System.CodeDom.CodeMemberProperty
H A DCodeMemberMethod.cs115 public CodeTypeReference PrivateImplementationType { property in System.CodeDom.CodeMemberMethod
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/
H A DCodeValidator.cs296 if (e.PrivateImplementationType != null && !IsCurrentInterface) in ValidateProperty()
298 ValidateTypeReference(e.PrivateImplementationType); in ValidateProperty()
370 if (e.PrivateImplementationType != null) in ValidateMethod()
372 ValidateTypeReference(e.PrivateImplementationType); in ValidateMethod()
619 if (e.PrivateImplementationType != null) in ValidateEvent()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/compiler/
H A DCodeValidator.cs250 if (e.PrivateImplementationType != null && !IsCurrentInterface) { in ValidateProperty()
251 ValidateTypeReference(e.PrivateImplementationType); in ValidateProperty()
309 if (e.PrivateImplementationType != null) { in ValidateMethod()
310 ValidateTypeReference(e.PrivateImplementationType); in ValidateMethod()
508 if (e.PrivateImplementationType != null) { in ValidateEvent()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/Microsoft/CSharp/
H A DCSharpCodeGenerator.cs1208 if (e.PrivateImplementationType == null) in GenerateEvent()
1214 if (e.PrivateImplementationType != null) in GenerateEvent()
1216 … name = GetBaseTypeOutput(e.PrivateImplementationType, preferBuiltInTypes: false) + "." + name; in GenerateEvent()
1459 if (e.PrivateImplementationType == null) in GenerateMethod()
1473 if (e.PrivateImplementationType != null) in GenerateMethod()
1475 … Output.Write(GetBaseTypeOutput(e.PrivateImplementationType, preferBuiltInTypes: false)); in GenerateMethod()
1545 if (e.PrivateImplementationType == null) in GenerateProperty()
1559 if (e.PrivateImplementationType != null && !IsCurrentInterface) in GenerateProperty()
1561 … Output.Write(GetBaseTypeOutput(e.PrivateImplementationType, preferBuiltInTypes: false)); in GenerateProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/microsoft/csharp/
H A Dcsharpcodeprovider.cs1640 if (e.PrivateImplementationType == null) { in GenerateEvent()
1645 if (e.PrivateImplementationType != null) { in GenerateEvent()
1646 name = GetBaseTypeOutput(e.PrivateImplementationType)+ "." + name; in GenerateEvent()
1862 if (e.PrivateImplementationType == null) { in GenerateMethod()
1874 if (e.PrivateImplementationType != null) { in GenerateMethod()
1875 Output.Write(GetBaseTypeOutput(e.PrivateImplementationType)); in GenerateMethod()
1941 if (e.PrivateImplementationType == null) { in GenerateProperty()
1953 if (e.PrivateImplementationType != null && !IsCurrentInterface) { in GenerateProperty()
1954 Output.Write(GetBaseTypeOutput(e.PrivateImplementationType)); in GenerateProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/XamlBuildTask/Microsoft/Build/Tasks/Xaml/
H A DClassGenerator.cs850 PrivateImplementationType = ifaceType, in GenerateISupportInitializeImpl()
865 PrivateImplementationType = ifaceType, in GenerateISupportInitializeImpl()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/ref/
H A DSystem.CodeDom.cs396 …public System.CodeDom.CodeTypeReference PrivateImplementationType { [System.Runtime.CompilerServic… property in System.CodeDom.CodeMemberEvent
413 …public System.CodeDom.CodeTypeReference PrivateImplementationType { [System.Runtime.CompilerServic… property in System.CodeDom.CodeMemberMethod
430 …public System.CodeDom.CodeTypeReference PrivateImplementationType { [System.Runtime.CompilerServic… property in System.CodeDom.CodeMemberProperty
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Description/
H A DClientClassGenerator.cs308 method.PrivateImplementationType = ifaceType; in GenerateHelperMethod()

12