7 overrides of GetMethods
ILCompiler.Compiler (2)
parent\parent\Common\TypeSystem\Interop\IL\InlineArrayType.cs (1)
265public override IEnumerable<MethodDesc> GetMethods()
parent\parent\Common\TypeSystem\Interop\IL\PInvokeDelegateWrapper.cs (1)
250public override IEnumerable<MethodDesc> GetMethods()
ILCompiler.TypeSystem (5)
parent\parent\Common\TypeSystem\Common\ArrayType.cs (1)
116public override IEnumerable<MethodDesc> GetMethods()
parent\parent\Common\TypeSystem\Common\InstantiatedType.cs (1)
147public override IEnumerable<MethodDesc> GetMethods()
parent\parent\Common\TypeSystem\Common\TypeWithRepeatedFields.cs (1)
126public override IEnumerable<MethodDesc> GetMethods() => MethodDesc.EmptyMethods;
parent\parent\Common\TypeSystem\Ecma\EcmaType.cs (1)
292public override IEnumerable<EcmaMethod> GetMethods()
parent\parent\Common\TypeSystem\RuntimeDetermined\RuntimeDeterminedType.cs (1)
112public override IEnumerable<MethodDesc> GetMethods()
39 references to GetMethods
crossgen2 (3)
Program.cs (3)
787foreach (var searchMethod in owningType.GetMethods()) 817foreach (var searchMethod in owningType.GetMethods()) 858foreach (var searchMethod in method.OwningType.GetMethods())
ilc (1)
RdXmlRootProvider.cs (1)
180foreach (var m in containingType.GetMethods())
ILCompiler.Compiler (17)
Compiler\BodySubstitutionParser.cs (1)
159foreach (MethodDesc meth in type.GetMethods())
Compiler\CompilerTypeSystemContext.Aot.cs (2)
226return virtualOnly ? type.GetVirtualMethods() : type.GetMethods(); 253IEnumerable<MethodDesc> metadataMethods = virtualOnly ? type.GetVirtualMethods() : type.GetMethods();
Compiler\CompilerTypeSystemContext.GetFieldMethodOverrides.cs (2)
52IEnumerable<MethodDesc> metadataMethods = virtualOnly ? valueType.GetVirtualMethods() : valueType.GetMethods(); 75IEnumerable<MethodDesc> metadataMethods = virtualOnly ? attributeType.GetVirtualMethods() : attributeType.GetMethods();
Compiler\Dataflow\CompilerGeneratedState.cs (2)
287foreach (MethodDesc method in type.GetMethods()) 299foreach (var method in nestedType.GetMethods())
Compiler\Dataflow\InterproceduralState.cs (1)
79foreach (var stateMachineMethod in stateMachineType.GetMethods())
Compiler\DependencyAnalysis\TypeMetadataNode.cs (1)
80foreach (MethodDesc method in _type.GetMethods())
Compiler\DescriptorMarker.cs (1)
189case TypePreserve.Methods when !type.GetMethods().Any():
Compiler\Logging\DocumentationSignatureParser.cs (1)
585foreach (var method in type.GetMethods())
Compiler\RootingHelpers.cs (1)
54foreach (var method in type.ConvertToCanonForm(CanonicalFormKind.Specific).GetMethods())
Compiler\UsageBasedMetadataManager.cs (1)
509foreach (MethodDesc method in type.GetMethods())
parent\parent\Common\Compiler\Dataflow\DynamicallyAccessedMembersBinder.cs (3)
148foreach (var method in type.GetMethods()) 185foreach (var method in type.GetMethods()) 493foreach (var m in type.GetMethods())
parent\parent\Common\Compiler\NativeAotNameMangler.cs (1)
558foreach (var m in method.OwningType.GetMethods())
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Type.cs (1)
324foreach (var method in entity.GetMethods())
ILCompiler.ReadyToRun (7)
Compiler\ProfileDataManager.cs (1)
426foreach (MethodDesc method in type.GetMethods())
Compiler\ReadyToRunCompilerContext.cs (1)
162return type.GetMethods();
Compiler\ReadyToRunHardwareIntrinsicRootProvider.cs (1)
26foreach (MethodDesc method in hardwareIntrinsicType.GetMethods())
parent\parent\Common\Compiler\Dataflow\DynamicallyAccessedMembersBinder.cs (3)
148foreach (var method in type.GetMethods()) 185foreach (var method in type.GetMethods()) 493foreach (var m in type.GetMethods())
parent\parent\Common\Compiler\NativeAotNameMangler.cs (1)
558foreach (var m in method.OwningType.GetMethods())
ILCompiler.TypeSystem (10)
parent\parent\Common\TypeSystem\Common\CastingHelper.TypeEquivalence.cs (2)
196foreach (var method in type1.GetMethods()) 202foreach (var method in type2.GetMethods())
parent\parent\Common\TypeSystem\Common\InstantiatedType.cs (1)
149foreach (var typicalMethodDef in _typeDef.GetMethods())
parent\parent\Common\TypeSystem\Common\TypeDesc.cs (3)
514foreach (MethodDesc method in GetMethods()) 539foreach (var method in GetMethods()) 552foreach (var method in GetMethods())
parent\parent\Common\TypeSystem\Common\TypeDesc.TypeEquivalence.cs (1)
131foreach (var method in GetMethods())
parent\parent\Common\TypeSystem\Common\TypeSystemContext.cs (1)
653return type.GetMethods();
parent\parent\Common\TypeSystem\IL\UnsafeAccessors.cs (1)
434foreach (MethodDesc md in targetType.GetMethods())
parent\parent\Common\TypeSystem\RuntimeDetermined\RuntimeDeterminedType.cs (1)
114foreach (var method in _rawCanonType.GetMethods())