15 references to MetadataDecoder
Microsoft.CodeAnalysis.CSharp (15)
Symbols\Metadata\PE\MemberRefMetadataDecoder.cs (1)
36base(moduleSymbol, containingType as PENamedTypeSymbol)
Symbols\Metadata\PE\PEEventSymbol.cs (2)
93var metadataDecoder = new MetadataDecoder(moduleSymbol, containingType); 486new MetadataDecoder(containingPEModule, containingType));
Symbols\Metadata\PE\PEFieldSymbol.cs (2)
310FieldInfo<TypeSymbol> fieldInfo = new MetadataDecoder(moduleSymbol, _containingType).DecodeFieldSignature(_handle); 656new MetadataDecoder(containingPEModule, containingType));
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
1308var explicitlyOverriddenMethods = new MetadataDecoder(moduleSymbol, _containingType).GetExplicitlyOverriddenMethods(_containingType.Handle, _handle, this.ContainingType);
Symbols\Metadata\PE\PENamedTypeSymbol.cs (4)
550return (NamedTypeSymbol)new MetadataDecoder(moduleSymbol, this).GetTypeOfToken(token); 572var tokenDecoder = new MetadataDecoder(moduleSymbol, this); 1204var decoder = new MetadataDecoder(moduleSymbol, this); 2171var decoder = new MetadataDecoder(ContainingPEModule, this);
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
1198PEPropertySymbol => new MetadataDecoder(containingModule, (PENamedTypeSymbol)ContainingType),
Symbols\Metadata\PE\PEPropertySymbol.cs (3)
197var metadataDecoder = new MetadataDecoder(moduleSymbol, containingType); 709var metadataDecoder = new MetadataDecoder(_containingType.ContainingPEModule, _containingType); 976var decoder = new MetadataDecoder(containingPEModule, containingType);
Symbols\Metadata\PE\PETypeParameterSymbol.cs (1)
258tokenDecoder = new MetadataDecoder(moduleSymbol, (PENamedTypeSymbol)_containingSymbol);