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)
96var metadataDecoder = new MetadataDecoder(moduleSymbol, containingType); 528new MetadataDecoder(containingPEModule, containingType));
Symbols\Metadata\PE\PEFieldSymbol.cs (2)
332FieldInfo<TypeSymbol> fieldInfo = new MetadataDecoder(moduleSymbol, _containingType).DecodeFieldSignature(_handle); 707new MetadataDecoder(containingPEModule, containingType));
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
1388var explicitlyOverriddenMethods = new MetadataDecoder(moduleSymbol, _containingType).GetExplicitlyOverriddenMethods(_containingType.Handle, _handle, this.ContainingType);
Symbols\Metadata\PE\PENamedTypeSymbol.cs (4)
802return (NamedTypeSymbol)new MetadataDecoder(moduleSymbol, this).GetTypeOfToken(token); 824var tokenDecoder = new MetadataDecoder(moduleSymbol, this); 1654var decoder = new MetadataDecoder(moduleSymbol, this); 2780var decoder = new MetadataDecoder(ContainingPEModule, this);
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
1267PEPropertySymbol => new MetadataDecoder(containingModule, (PENamedTypeSymbol)ContainingType),
Symbols\Metadata\PE\PEPropertySymbol.cs (3)
220var metadataDecoder = new MetadataDecoder(moduleSymbol, containingType); 771var metadataDecoder = new MetadataDecoder(_containingType.ContainingPEModule, _containingType); 1072var decoder = new MetadataDecoder(containingPEModule, containingType);
Symbols\Metadata\PE\PETypeParameterSymbol.cs (1)
259tokenDecoder = new MetadataDecoder(moduleSymbol, (PENamedTypeSymbol)_containingSymbol);