23 references to PlatformType
Microsoft.CodeAnalysis (23)
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)
66
Cci.ITypeReference stringType = context.Module.GetPlatformType(Cci.
PlatformType
.SystemString, context);
76
Debug.Assert(context.Module.IsPlatformType(fileArg.Type, Cci.
PlatformType
.SystemString));
CodeGen\PrivateImplementationDetails.cs (1)
785
return context.Module.GetPlatformType(Cci.
PlatformType
.SystemString, context);
Emit\CommonPEModuleBuilder.cs (4)
175
public abstract Cci.ITypeReference GetPlatformType(Cci.
PlatformType
platformType, EmitContext context);
176
public abstract bool IsPlatformType(Cci.ITypeReference typeRef, Cci.
PlatformType
platformType);
1133
public sealed override Cci.ITypeReference GetPlatformType(Cci.
PlatformType
platformType, EmitContext context)
1139
case Cci.
PlatformType
.SystemType:
Emit\NoPia\VtblGap.cs (1)
256
return context.Module.GetPlatformType(Cci.
PlatformType
.SystemVoid, context);
PEWriter\MetadataWriter.cs (10)
3504
else if (module.IsPlatformType(type,
PlatformType
.SystemObject))
3523
Debug.Assert(this.module.IsPlatformType(targetType,
PlatformType
.SystemObject));
3553
if (this.module.IsPlatformType(targetType,
PlatformType
.SystemObject))
3561
this.module.IsPlatformType(c.Type,
PlatformType
.SystemObject))
3583
Debug.Assert(!module.IsPlatformType(c.Type,
PlatformType
.SystemType) || c.Value == null);
3781
if (module.IsPlatformType(returnType,
PlatformType
.SystemVoid))
3819
if (module.IsPlatformType(typeReference,
PlatformType
.SystemTypedReference))
3891
if (module.IsPlatformType(typeReference,
PlatformType
.SystemObject))
4020
if (module.IsPlatformType(elementType,
PlatformType
.SystemObject))
4043
else if (module.IsPlatformType(typeReference,
PlatformType
.SystemType))
PEWriter\MetadataWriter.PortablePdb.cs (1)
226
else if (this.module.IsPlatformType(type,
PlatformType
.SystemObject))
PEWriter\MethodDefinitionBase.cs (1)
121
public virtual ITypeReference GetType(EmitContext context) => context.Module.GetPlatformType(
PlatformType
.SystemVoid, context);