32 references to INamedTypeSymbolInternal
Microsoft.CodeAnalysis (31)
Compilation\CommonModuleCompilationState.cs (1)
34
where TNamedTypeSymbol : class,
INamedTypeSymbolInternal
Compilation\Compilation.cs (1)
991
private protected abstract
INamedTypeSymbolInternal
CommonGetSpecialType(SpecialType specialType);
Emit\CommonPEModuleBuilder.cs (3)
102
public abstract
INamedTypeSymbolInternal
? TryGetOrCreateSynthesizedHotReloadExceptionType();
107
public abstract
INamedTypeSymbolInternal
? GetUsedSynthesizedHotReloadExceptionType();
584
where TNamedTypeSymbol : class, TTypeSymbol,
INamedTypeSymbolInternal
Emit\EditAndContinue\DefinitionMap.cs (5)
47
private ImmutableDictionary<
INamedTypeSymbolInternal
, MetadataLambdasAndClosures> _metadataLambdasAndClosures
48
= ImmutableDictionary<
INamedTypeSymbolInternal
, MetadataLambdasAndClosures>.Empty;
538
private MetadataLambdasAndClosures GetMetadataLambdaAndClosureMap(
INamedTypeSymbolInternal
peType, DebugId methodId)
592
var
displayClass = (
INamedTypeSymbolInternal
)member;
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
523
if (typeDef.GetInternalSymbol() is
INamedTypeSymbolInternal
typeSymbol &&
Emit\EditAndContinue\SymbolChanges.cs (5)
46
public readonly IReadOnlyDictionary<
INamedTypeSymbolInternal
, ImmutableArray<(IMethodSymbolInternal oldMethod, IMethodSymbolInternal newMethod)>> UpdatedMethods;
354
out IReadOnlyDictionary<
INamedTypeSymbolInternal
, ImmutableArray<(IMethodSymbolInternal oldMethod, IMethodSymbolInternal newMethod)>> updatedMethods)
357
var updatedMethodsBuilder = new Dictionary<
INamedTypeSymbolInternal
, ArrayBuilder<(IMethodSymbolInternal oldMethod, IMethodSymbolInternal newMethod)>>();
384
var
newContainingType = (
INamedTypeSymbolInternal
)GetRequiredInternalSymbol(edit.NewSymbol);
MetadataReader\MetadataDecoder.cs (1)
1419
if (type is
INamedTypeSymbolInternal
{ EnumUnderlyingType: { } underlyingType })
MetadataReader\PEModule.cs (2)
1392
Func<string, TypedConstant, bool, (bool IsCallConvs, ImmutableHashSet<
INamedTypeSymbolInternal
>? CallConvs)> unmanagedCallersOnlyDecoder)
1403
var unmanagedConventionTypes = ImmutableHashSet<
INamedTypeSymbolInternal
>.Empty;
Symbols\Attributes\CommonAttributeData.cs (1)
77
internal static bool IsTargetEarlyAttribute(
INamedTypeSymbolInternal
attributeType, int attributeArgCount, AttributeDescription description)
Symbols\Attributes\EarlyDecodeWellKnownAttributeArguments.cs (1)
17
where TNamedTypeSymbol :
INamedTypeSymbolInternal
Symbols\Attributes\UnmanagedCallersOnlyAttributeData.cs (6)
13
internal static readonly UnmanagedCallersOnlyAttributeData Uninitialized = new UnmanagedCallersOnlyAttributeData(callingConventionTypes: ImmutableHashSet<
INamedTypeSymbolInternal
>.Empty);
14
internal static readonly UnmanagedCallersOnlyAttributeData AttributePresentDataNotBound = new UnmanagedCallersOnlyAttributeData(callingConventionTypes: ImmutableHashSet<
INamedTypeSymbolInternal
>.Empty);
15
private static readonly UnmanagedCallersOnlyAttributeData PlatformDefault = new UnmanagedCallersOnlyAttributeData(callingConventionTypes: ImmutableHashSet<
INamedTypeSymbolInternal
>.Empty);
19
internal static UnmanagedCallersOnlyAttributeData Create(ImmutableHashSet<
INamedTypeSymbolInternal
>? callingConventionTypes)
26
public readonly ImmutableHashSet<
INamedTypeSymbolInternal
> CallingConventionTypes;
28
private UnmanagedCallersOnlyAttributeData(ImmutableHashSet<
INamedTypeSymbolInternal
> callingConventionTypes)
Symbols\INamedTypeSymbolInternal.cs (2)
16
INamedTypeSymbolInternal
? EnumUnderlyingType { get; }
33
public static (ThreeState isManaged, bool hasGenerics) IsManagedTypeHelper(
INamedTypeSymbolInternal
type)
Symbols\ISymbolInternal.cs (2)
75
/// Gets the <see cref="
INamedTypeSymbolInternal
"/> for the containing type. Returns null if the
78
INamedTypeSymbolInternal
ContainingType { get; }
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
CSharpTestBase.cs (1)
1941
var
type = method.ContainingType;