Home
last modified time | relevance | path

Searched refs:GetMethod (Results 51 – 75 of 3298) sorted by relevance

12345678910>>...132

/dports/lang/mono/mono-5.10.1.57/mcs/tests/
H A Dtest-tuple-05.cs68 if (t.GetMethod("get_Prop").ReturnParameter.GetCustomAttributes(ca, false).Length != 1) in Main()
74 if (t.GetMethod("set_Prop").ReturnParameter.GetCustomAttributes(ca, false).Length != 0) in Main()
77 if (t.GetMethod("set_Prop").GetParameters()[0].GetCustomAttributes(ca, false).Length != 1) in Main()
89 if (t.GetMethod("get_Item").ReturnParameter.GetCustomAttributes(ca, false).Length != 1) in Main()
92 if (t.GetMethod("get_Item").GetParameters()[0].GetCustomAttributes(ca, false).Length != 1) in Main()
95 if (t.GetMethod("set_Item").ReturnParameter.GetCustomAttributes(ca, false).Length != 0) in Main()
98 if (t.GetMethod("set_Item").GetParameters()[0].GetCustomAttributes(ca, false).Length != 1) in Main()
101 if (t.GetMethod("set_Item").GetParameters()[1].GetCustomAttributes(ca, false).Length != 1) in Main()
107 var res = t.GetMethod("Method").GetParameters()[0].GetCustomAttributes(ca, false); in Main()
172 if (t.GetMethod("Invoke").GetParameters()[0].GetCustomAttributes(ca, false).Length != 1) in Main()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit/tests/TypeBuilder/
H A DTypeBuilderDefineMethodOverride.cs32 MethodInfo decleration = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_InterfaceMethod()
37 MethodInfo createdMethod = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_InterfaceMethod()
52 MethodInfo decleration = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_InterfaceMethodWithConflictingName()
56 MethodInfo createdMethod = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_InterfaceMethodWithConflictingName()
92 MethodInfo decleration = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_CalledTwiceWithSameBodies_Works()
106 MethodInfo method = typeof(DefineMethodOverrideClass).GetMethod("M"); in DefineMethodOverride_NullMethodInfoBody_ThrowsArgumentNullException()
114 MethodInfo method = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_NullMethodInfoDeclaration_ThrowsArgumentNullException()
122 MethodInfo body = typeof(DefineMethodOverrideInterface).GetMethod("M"); in DefineMethodOverride_MethodNotInClass_ThrowsArgumentException()
123 MethodInfo decleration = typeof(DefineMethodOverrideClass).GetMethod("M"); in DefineMethodOverride_MethodNotInClass_ThrowsArgumentException()
148 MethodInfo body = createdType.GetMethod(method.Name); in DefineMethodOverride_TypeCreated_ThrowsInvalidOperationException()
[all …]
/dports/java/apache-commons-httpclient/commons-httpclient-3.1/src/test/org/apache/commons/httpclient/
H A DTestResponseHeaders.java98 HttpMethod method = new GetMethod(); in testHeaders()
140 GetMethod method = new GetMethod("/"); in testDuplicateConnection()
157 method = new GetMethod("/"); in testDuplicateConnection()
179 GetMethod method = new GetMethod("/"); in testNoContentLength()
199 method = new GetMethod("/"); in testNoContentLength()
217 GetMethod method = new GetMethod("/"); in testInvalidContentLength1()
233 GetMethod method = new GetMethod("/"); in testInvalidContentLength2()
254 GetMethod method = new GetMethod("/"); in testProxyNoContentLength()
273 method = new GetMethod("/"); in testProxyNoContentLength()
381 GetMethod method = new GetMethod("/"); in testNoContent()
[all …]
H A DTestHeaderOps.java39 import org.apache.commons.httpclient.methods.GetMethod;
102 GetMethod method = new GetMethod("/"); in testAddRequestHeader()
121 GetMethod method = new GetMethod("/"); in testRemoveRequestHeader()
140 GetMethod method = new GetMethod("/"); in testOverwriteRequestHeader()
159 GetMethod method = new GetMethod("/"); in testGetResponseHeader()
181 GetMethod get = new GetMethod("/"); in testHostRequestHeader()
202 get = new GetMethod("/"); in testHostRequestHeader()
H A DTestProxy.java135 GetMethod get = new GetMethod("/"); in testSimpleGet()
160 GetMethod get = new GetMethod("/"); in testGetHostAuthConnKeepAlive()
185 GetMethod get = new GetMethod("/"); in testGetHostAuthConnClose()
213 GetMethod get = new GetMethod("/"); in testGetHostInvalidAuth()
239 GetMethod get = new GetMethod("/"); in testGetInteractiveHostAuthConnKeepAlive()
265 GetMethod get = new GetMethod("/"); in testGetInteractiveHostAuthConnClose()
293 GetMethod get = new GetMethod("/"); in testGetProxyAuthHostAuthConnKeepAlive()
314 GetMethod get = new GetMethod("/"); in testGetAuthProxy()
342 GetMethod get = new GetMethod("/"); in testGetProxyAuthHostAuthConnClose()
371 GetMethod get = new GetMethod("/"); in testGetProxyAuthHostInvalidAuth()
[all …]
H A DTestHttpConnectionManager.java104 GetMethod get = new GetMethod("/"); in testConnectMethodFailureRelease()
120 get = new GetMethod("/"); in testConnectMethodFailureRelease()
137 get = new GetMethod("/"); in testConnectMethodFailureRelease()
200 GetMethod method = new GetMethod("/"); in testDroppedThread()
229 GetMethod get = new GetMethod("/") { in testWriteRequestReleaseConnection()
266 GetMethod getMethod = new GetMethod("/"); in testReleaseConnection()
317 GetMethod getMethod = new GetMethod("/"); in testResponseAutoRelease()
614 GetMethod getMethod = new GetMethod("/"); in testMaxConnectionsPerServer()
622 GetMethod getMethod2 = new GetMethod("/"); in testMaxConnectionsPerServer()
723 GetMethod getMethod = new GetMethod("/"); in testReclaimUnusedConnection()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/tests/Call/
H A DCallTests.cs60 MethodCallExpression call = Expression.Call(unbox, typeof(Mutable).GetMethod("Foo")); in UnboxReturnsReference()
76 MethodCallExpression call = Expression.Call(indexed, typeof(Mutable).GetMethod("Foo")); in ArrayWriteBack()
91 MethodCallExpression call = Expression.Call(indexed, typeof(Mutable).GetMethod("Foo")); in MultiRankArrayWriteBack()
106 MethodCallExpression call = Expression.Call(indexed, typeof(Mutable).GetMethod("Foo")); in ArrayAccessWriteBack()
121 MethodCallExpression call = Expression.Call(indexed, typeof(Mutable).GetMethod("Foo")); in MultiRankArrayAccessWriteBack()
150 MethodCallExpression call = Expression.Call(member, typeof(Mutable).GetMethod("Foo")); in FieldAccessWriteBack()
165 MethodCallExpression call = Expression.Call(member, typeof(Mutable).GetMethod("Foo")); in PropertyAccessNoWriteBack()
206 MethodCallExpression call = Expression.Call(typeof(Methods).GetMethod("ByRef"), x); in CallByRefMutableStructPropertyWriteBack()
221 MethodCallExpression call = Expression.Call(typeof(Methods).GetMethod("ByRef"), x); in CallByRefMutableStructIndexWriteBack()
234 MethodCallExpression call = Expression.Call(typeof(Methods).GetMethod("ByRef"), x); in CallByRefAttemptTailCall()
[all …]
H A DCallFactoryTests.cs27 … var expr = Expression.Call(instance, typeof(MS).GetMethod(nameof(MS.I0)), default(Expression[])); in CheckCallFactoryOptimisedInstanceNullArgumentList()
55 MethodCallExpression expr = Expression.Call(obj, typeof(MS).GetMethod("I" + N), args); in CheckCallFactoryInstanceN()
163 MethodCallExpression expr = Expression.Call(typeof(MS).GetMethod("S" + N), args); in CheckCallFactoryStaticN()
221 MethodInfo method = typeof(MS).GetMethod("I" + n); in AssertCallIsOptimizedInstance()
228 MethodInfo method = typeof(MS).GetMethod("S" + n); in AssertCallIsOptimizedStatic()
351 MethodCallExpression expr = Expression.Call(typeof(MS).GetMethod(nameof(MS.S0))); in UpdateStaticNull()
358 expr = Expression.Call(typeof(MS).GetMethod("S" + argNum), args); in UpdateStaticNull()
369 … MethodCallExpression expr = Expression.Call(instance, typeof(MS).GetMethod(nameof(MS.I0))); in UpdateInstanceNull()
376 expr = Expression.Call(instance, typeof(MS).GetMethod("I" + argNum), args); in UpdateInstanceNull()
390 … MethodCallExpression expr = Expression.Call(typeof(MS).GetMethod("S" + argNum), args); in UpdateStaticExtraArguments()
[all …]
/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Daot-tests.cs82 var res = (float)typeof (Foo<float>).GetMethod ("Get_T").Invoke (null, new object [] { arg1, s }); in test_0_arm64_dyncall_float()
129 var s_res = (Struct1)t.GetMethod ("Get_T").Invoke (null, new object [] { arg1, s }); in test_0_arm64_dyncall_gsharedvt_out_hfa_double()
149 var s_res = (Struct2)t.GetMethod ("Get_T").Invoke (null, new object [] { arg1, s }); in test_0_arm64_dyncall_gsharedvt_out_hfa_float()
210 var s_res = (VTypeByRefStruct)t.GetMethod ("Get_T").Invoke (o, new object [] { s }); in test_0_arm64_dyncall_vtypebyref_ret()
395 arr.GetType ().GetMethod ("Set").Invoke (arr, new object [] { 0, "A" }); in test_0_array_accessor_runtime_invoke_ref()
396 var res = (string)arr.GetType ().GetMethod ("Get").Invoke (arr, new object [] { 0 }); in test_0_array_accessor_runtime_invoke_ref()
433 var m = typeof(Tests).GetMethod("GetHasValue", BindingFlags.Static | BindingFlags.Public); in test_0_large_nullable_invoke()
473 var m2 = typeof (AotTests).GetMethod ("test_0_get_current_method"); in test_0_get_current_method()
475 var m2 = typeof (Tests).GetMethod ("test_0_get_current_method"); in test_0_get_current_method()
490 var m2 = typeof (GetCurrentMethodClass<>).GetMethod ("get_current"); in test_0_get_current_method_generic()
[all …]
/dports/lang/mono/mono-5.10.1.57/mono/tests/
H A Dtest-inline-call-stack.cs52 TestFailed (myStackFrame.GetMethod ().Name == inlinedStackFrame.GetMethod ().Name), in Main()
53 myStackFrame.GetMethod ().Name, inlinedStackFrame.GetMethod ().Name, in Main()
54 myStackFrame.GetMethod ().Name == inlinedStackFrame.GetMethod ().Name); in Main()
73 (myStackFrame.GetMethod ().Name != inlinedStackFrame.GetMethod ().Name) && in Main()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Core/Test/System.Linq.Expressions/
H A DExpressionTest_ElementInit.cs52 Expression.ElementInit (typeof (Foo).GetMethod ("Add"), null); in ArgNull()
59 Expression.ElementInit (typeof (Foo).GetMethod ("Bar"), new Expression [] {}); in MethodNameDoesntMatchAdd()
66 Expression.ElementInit (typeof (Bar).GetMethod ("Add"), new Expression [] {}); in AddMethodIsNotAnInstanceMethod()
73 Expression.ElementInit (typeof (Foo).GetMethod ("Add"), new Expression [] {}); in MethodArgumentCountDoesnMatchParameterLength()
81 Expression.ElementInit (typeof (Foo).GetMethod ("Add"), new Expression [] {null}); in MethodHasNullArgument()
88 …Expression.ElementInit (typeof (Foo).GetMethod ("Add"), new Expression [] {Expression.Constant (1)… in MethodArgumentDoesntMatchParameterType()
94 …var ElementInit = Expression.ElementInit (typeof (Foo).GetMethod ("Add"), new Expression [] {Expre… in ElementInitToString()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/ILCompiler.Compiler/tests/
H A DDevirtualizationTests.cs49 …ualizationManager scanDevirt = GetDevirtualizationManagerFromScan(testType.GetMethod("Run", null)); in TestDevirtualizeWithUnallocatedType()
51 MethodDesc decl = testType.GetNestedType("Base").GetMethod("Unreachable", null); in TestDevirtualizeWithUnallocatedType()
56 Assert.Same(impl.GetMethod("Unreachable", null), resolvedMethod); in TestDevirtualizeWithUnallocatedType()
70 …ualizationManager scanDevirt = GetDevirtualizationManagerFromScan(testType.GetMethod("Run", null)); in TestDevirtualizeWithOtherUnallocatedType()
75 Assert.False(scanDevirt.IsEffectivelySealed(impl.GetMethod("Unreachable", null))); in TestDevirtualizeWithOtherUnallocatedType()
82 …ualizationManager scanDevirt = GetDevirtualizationManagerFromScan(testType.GetMethod("Run", null)); in TestDevirtualizeSimple()
84 MethodDesc implMethod = testType.GetNestedType("Derived").GetMethod("Virtual", null); in TestDevirtualizeSimple()
98 …ualizationManager scanDevirt = GetDevirtualizationManagerFromScan(testType.GetMethod("Run", null)); in TestDevirtualizeAbstract()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.StackTrace/tests/
H A DStackFrameTests.cs24 …VerifyStackFrame(stackFrame, false, 0, typeof(StackFrameTests).GetMethod(nameof(Ctor_Default)), is… in Ctor_Default()
34 …VerifyStackFrame(stackFrame, fNeedFileInfo, 0, typeof(StackFrameTests).GetMethod(nameof(Ctor_FNeed… in Ctor_FNeedFileInfo()
58 …ackFrame(stackFrame, fNeedFileInfo, skipFrames, typeof(StackFrameTests).GetMethod(nameof(Ctor_Skip… in Ctor_SkipFrames_FNeedFileInfo()
65 …MethodInfo expectedMethod = typeof(StackFrameTests).GetMethod(nameof(SkipFrames_CallMethod_Returns… in SkipFrames_CallMethod_ReturnsExpected()
67 Assert.Equal(expectedMethod, stackFrame.GetMethod()); in SkipFrames_CallMethod_ReturnsExpected()
69 Assert.NotEqual(expectedMethod, stackFrame.GetMethod()); in SkipFrames_CallMethod_ReturnsExpected()
95 …VerifyStackFrameSkipFrames(stackFrame, true, 0, typeof(StackFrameTests).GetMethod(nameof(Ctor_File… in Ctor_Filename_LineNumber()
109 …VerifyStackFrameSkipFrames(stackFrame, true, 0, typeof(StackFrameTests).GetMethod(nameof(Ctor_File… in Ctor_Filename_LineNumber_ColNumber()
179 Assert.Null(stackFrame.GetMethod()); in VerifyStackFrameSkipFrames()
183 Assert.Equal(expectedMethod, stackFrame.GetMethod()); in VerifyStackFrameSkipFrames()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/tools/cil-strip/Mono.Cecil/
H A DPropertyDefinition.cs80 if (this.GetMethod != null)
81 return CloneParameterCollection (this.GetMethod.Parameters);
97 public MethodDefinition GetMethod { property in Mono.Cecil.PropertyDefinition
181 prop.GetMethod = get; in CreateGetMethod()
211 np.SetMethod = type.Methods.GetMethod (prop.SetMethod.Name, prop.SetMethod.Parameters); in Clone()
212 if (prop.GetMethod != null) in Clone()
213 np.GetMethod = type.Methods.GetMethod (prop.GetMethod.Name, prop.GetMethod.Parameters); in Clone()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/ILCompiler.TypeSystem/tests/
H A DVirtualFunctionOverrideTests.cs74 MethodDesc objectToString = objectType.GetMethod("ToString", toStringSig); in TestVirtualDispatchOnGenericType()
78 MethodDesc targetOnInstance = testInstance.GetMethod("ToString", toStringSig); in TestVirtualDispatchOnGenericType()
91 …MethodDesc baseNongenericOverload = baseInstance.GetMethod("MyMethod", new MethodSignature(MethodS… in TestVirtualDispatchOnGenericTypeWithOverload()
92 …MethodDesc derivedNongenericOverload = derivedInstance.GetMethod("MyMethod", new MethodSignature(M… in TestVirtualDispatchOnGenericTypeWithOverload()
96 …MethodDesc baseGenericOverload = baseInstance.GetMethod("MyMethod", new MethodSignature(MethodSign… in TestVirtualDispatchOnGenericTypeWithOverload()
97 …MethodDesc derivedGenericOverload = derivedInstance.GetMethod("MyMethod", new MethodSignature(Meth… in TestVirtualDispatchOnGenericTypeWithOverload()
107 …MethodDesc finalizeMethod = objectType.GetMethod("Finalize", new MethodSignature(MethodSignatureFl… in TestFinalizeOverrideChecking()
124 var myGetHashCodeMethod = explicitOverrideClass.GetMethod("MyGetHashCode", null); in TestExplicitOverride()
126 …var objectGetHashCodeMethod = _context.GetWellKnownType(WellKnownType.Object).GetMethod("GetHashCo… in TestExplicitOverride()
140 MethodDesc method = myDerived2Type.GetMethod("get_foo", null); in TestFindBaseUnificationGroup()
/dports/devel/swig/swig-4.0.2/Lib/typemaps/
H A Dattribute.swg145 %ignore Class::GetMethod();
146 %ignore Class::GetMethod() const;
174 %ignore Class::GetMethod();
175 %ignore Class::GetMethod() const;
201 …_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(),…
203 …%attribute_readonly(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, self_->GetMethod())
211 …attribute_readonly(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, &self_->GetMethod())
255 %ignore Class::GetMethod();
256 %ignore Class::GetMethod() const;
278 %ignore Class::GetMethod();
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime/tests/System/Reflection/
H A DMethodInfoTests.cs22 MethodInfo mi1 = GetMethod(str1); in TestEquality1()
23 MethodInfo mi2 = GetMethod(str2); in TestEquality1()
41 MethodInfo mi1 = GetMethod(sample1, str1); in TestEquality2()
42 MethodInfo mi2 = GetMethod(sample2, str2); in TestEquality2()
49 public static MethodInfo GetMethod(string method) in GetMethod() method in System.Reflection.Tests.MethodInfoTests
51 return GetMethod(typeof(MethodInfoTests), method); in GetMethod()
55 public static MethodInfo GetMethod(Type t, string method) in GetMethod() method in System.Reflection.Tests.MethodInfoTests
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Serialization/
H A DXmlSerializationReaderILGen.cs232 MethodInfo XmlReader_get_NameTable = typeof(XmlReader).GetMethod( in GenerateEnd()
239 MethodInfo XmlNameTable_Add = typeof(XmlNameTable).GetMethod( in GenerateEnd()
327 MethodInfo method = typeof(XmlSerializationReader).GetMethod( in WriteUnknownNode()
878 ToXXX = typeof(XmlSerializationReader).GetMethod( in WritePrimitive()
887 ToXXX = typeof(XmlConvert).GetMethod( in WritePrimitive()
1011 MethodInfo Hashtable_Add = typeof(Hashtable).GetMethod( in WriteHashtable()
1664 MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( in WriteLiteralStructMethod()
1965 MethodInfo String_get_Length = typeof(String).GetMethod( in WriteAttributes()
2127 MethodInfo String_Split = typeof(String).GetMethod( in WriteAttribute()
2835 MethodInfo Add = localA.LocalType.GetMethod( in WriteSourceEnd()
[all …]
/dports/graphics/quesa/quesa-1.8/Source/Core/System/
H A DE3Renderer.c204 theClass->GetMethod ( kQ3XMethodTypeRendererUpdateMatrixMetaHandler ) ;
220 theClass->GetMethod ( kQ3XMethodTypeRendererSubmitGeometryMetaHandler ) ;
236 theClass->GetMethod ( kQ3XMethodTypeRendererUpdateAttributeMetaHandler ) ;
252 theClass->GetMethod ( kQ3XMethodTypeRendererUpdateShaderMetaHandler ) ;
268 theClass->GetMethod ( kQ3XMethodTypeRendererUpdateStyleMetaHandler ) ;
538 theRenderer->GetMethod ( kQ3XMethodTypeRendererIsBoundingBoxVisible ) ;
822 if ( theClass->GetMethod ( kQ3XMethodTypeRendererMethodsCached ) == NULL )
884 theRenderer->GetMethod ( kQ3XMethodTypeRendererModalConfigure ) ;
915 rendererClass->GetMethod ( kQ3XMethodTypeRendererGetNickNameString ) ;
945 theRenderer->GetMethod ( kQ3XMethodTypeRendererGetConfigurationData ) ;
[all …]
/dports/lang/mono/mono-5.10.1.57/external/linker/cecil/Test/Mono.Cecil.Tests/
H A DPropertyTests.cs29 Assert.IsNotNull (property.GetMethod); in AbstractMethod()
30 Assert.AreEqual (MethodSemanticsAttributes.Getter, property.GetMethod.SemanticsAttributes); in AbstractMethod()
40 Assert.IsNotNull (property.GetMethod); in AbstractMethod()
41 Assert.AreEqual (MethodSemanticsAttributes.Getter, property.GetMethod.SemanticsAttributes); in AbstractMethod()
52 Assert.IsNull (property.GetMethod); in AbstractMethod()
109 var setter = type.GetMethod ("set_Bingo"); in ReadSemanticsFirst()
116 Assert.AreEqual (type.GetMethod ("get_Bingo"), property.GetMethod); in ReadSemanticsFirst()
125 Assert.IsNull (property.GetMethod); in UnattachedProperty()
/dports/lang/mono/mono-5.10.1.57/external/cecil/Test/Mono.Cecil.Tests/
H A DPropertyTests.cs29 Assert.IsNotNull (property.GetMethod); in AbstractMethod()
30 Assert.AreEqual (MethodSemanticsAttributes.Getter, property.GetMethod.SemanticsAttributes); in AbstractMethod()
40 Assert.IsNotNull (property.GetMethod); in AbstractMethod()
41 Assert.AreEqual (MethodSemanticsAttributes.Getter, property.GetMethod.SemanticsAttributes); in AbstractMethod()
52 Assert.IsNull (property.GetMethod); in AbstractMethod()
109 var setter = type.GetMethod ("set_Bingo"); in ReadSemanticsFirst()
116 Assert.AreEqual (type.GetMethod ("get_Bingo"), property.GetMethod); in ReadSemanticsFirst()
125 Assert.IsNull (property.GetMethod); in UnattachedProperty()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/tests/Dynamic/
H A DDynamicAttributeTests.cs37 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).GetParameters… in DefaultForDynamicParam()
47 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).ReturnParamet… in DefaultForDynamicReturn()
56 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).GetParameters… in ArrayOfDynamic()
64 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).GetParameters… in ListOfDynamic()
72 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).GetParameters… in DictionaryWithDynamicKey()
80 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).GetParameters… in DictionaryWithDynamicValue()
88 …IList<bool> flags = ((DynamicAttribute)GetType().GetMethod(nameof(ParamsAndReturns)).GetParameters… in ComplexGenericWithDynamic()
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Reflection/
H A DParameterInfoTest.cs60 MethodInfo mi = typeof (object).GetMethod ("Equals", in IsDefined_AttributeType_Null()
120 ParameterInfo [] pi = typeof (ParameterInfoTest).GetMethod ("Sample").GetParameters (); in TestDefaultValues()
129 ParameterInfo [] pi = typeof (ParameterInfoTest).GetMethod ("Sample").GetParameters (); in TestHasDefaultValues()
174 mi = type.GetMethod ("GetItems"); in Generics_Name()
180 mi = type.GetMethod ("Add"); in Generics_Name()
187 mi = type.GetMethod ("Create"); in Generics_Name()
214 ParameterInfo parm = typeof (Derived).GetMethod ("SomeMethod").GetParameters()[0]; in Member()
222 var matrix_int_get = typeof (int[,,]).GetMethod ("Get"); in ArrayMethodParameters()
247 var info = typeof (ParameterInfoTest).GetMethod ("TestC").GetParameters (); in DefaultValueDecimal()
253 var info = typeof (ParameterInfoTest).GetMethod ("TestC").GetParameters (); in HasDefaultValueDecimal()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Serialization/
H A DXmlSerializationReaderILGen.cs249 MethodInfo XmlNameTable_Add = typeof(XmlNameTable).GetMethod( in GenerateEnd()
337 MethodInfo method = typeof(XmlSerializationReader).GetMethod( in WriteUnknownNode()
809 MethodInfo XmlReader_method = typeof(XmlReader).GetMethod( in WritePrimitive()
845 ToXXX = typeof(XmlSerializationReader).GetMethod( in WritePrimitive()
853 ToXXX = typeof(XmlConvert).GetMethod( in WritePrimitive()
974 MethodInfo Hashtable_Add = typeof(Hashtable).GetMethod( in WriteHashtable()
1629 MethodInfo XmlReader_Skip = typeof(XmlReader).GetMethod( in WriteLiteralStructMethod()
1912 MethodInfo String_get_Length = typeof(String).GetMethod( in WriteAttributes()
2071 MethodInfo String_Split = typeof(String).GetMethod( in WriteAttribute()
2821 MethodInfo Add = localA.LocalType.GetMethod( in WriteSourceEnd()
[all …]
/dports/java/apache-commons-httpclient/commons-httpclient-3.1/src/test/org/apache/commons/httpclient/params/
H A DTestSSLTunnelParams.java42 import org.apache.commons.httpclient.methods.GetMethod;
114 GetMethod httpget = new GetMethod("/test/"); in testTunnellingParamsAgentLevel()
125 httpget = new GetMethod("/test/"); in testTunnellingParamsAgentLevel()
146 GetMethod httpget = new GetMethod("/test/"); in testTunnellingParamsHostLevel()
158 httpget = new GetMethod("/test/"); in testTunnellingParamsHostLevel()
179 GetMethod httpget = new GetMethod("/test/"); in testTunnellingParamsHostHTTP10AndMethodHTTP11()

12345678910>>...132