22 references to PlatformType
Microsoft.CodeAnalysis (22)
CodeGen\ArrayMembers.cs (3)
151=> context.Module.GetPlatformType(Cci.PlatformType.SystemVoid, context); 195=> context.Module.GetPlatformType(Cci.PlatformType.SystemVoid, context); 259=> context.Module.GetPlatformType(Cci.PlatformType.SystemInt32, context);
CodeGen\PermissionSetAttribute.cs (2)
66Cci.ITypeReference stringType = context.Module.GetPlatformType(Cci.PlatformType.SystemString, context); 76Debug.Assert(context.Module.IsPlatformType(fileArg.Type, Cci.PlatformType.SystemString));
Emit\CommonPEModuleBuilder.cs (4)
158public abstract Cci.ITypeReference GetPlatformType(Cci.PlatformType platformType, EmitContext context); 159public abstract bool IsPlatformType(Cci.ITypeReference typeRef, Cci.PlatformType platformType); 1089public sealed override Cci.ITypeReference GetPlatformType(Cci.PlatformType platformType, EmitContext context) 1095case Cci.PlatformType.SystemType:
Emit\NoPia\VtblGap.cs (1)
256return context.Module.GetPlatformType(Cci.PlatformType.SystemVoid, context);
PEWriter\MetadataWriter.cs (10)
3500else if (module.IsPlatformType(type, PlatformType.SystemObject)) 3519Debug.Assert(this.module.IsPlatformType(targetType, PlatformType.SystemObject)); 3549if (this.module.IsPlatformType(targetType, PlatformType.SystemObject)) 3557this.module.IsPlatformType(c.Type, PlatformType.SystemObject)) 3579Debug.Assert(!module.IsPlatformType(c.Type, PlatformType.SystemType) || c.Value == null); 3777if (module.IsPlatformType(returnType, PlatformType.SystemVoid)) 3815if (module.IsPlatformType(typeReference, PlatformType.SystemTypedReference)) 3887if (module.IsPlatformType(typeReference, PlatformType.SystemObject)) 4016if (module.IsPlatformType(elementType, PlatformType.SystemObject)) 4039else if (module.IsPlatformType(typeReference, PlatformType.SystemType))
PEWriter\MetadataWriter.PortablePdb.cs (1)
226else if (this.module.IsPlatformType(type, PlatformType.SystemObject))
PEWriter\RootModuleStaticConstructor.cs (1)
124public ITypeReference GetType(EmitContext context) => context.Module.GetPlatformType(PlatformType.SystemVoid, context);