30 references to DecodeValue
ILCompiler.Compiler (9)
Compiler\AssemblyExtensions.cs (1)
25CustomAttributeValue<TypeDesc> decoded = attr.DecodeValue(new CustomAttributeTypeProvider(assembly));
Compiler\CustomAttributeExtensions.cs (5)
24return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(ecmaType.Module)); 37yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(ecmaType.Module)); 53return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(ecmaType.Module)); 66yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(ecmaType.Module)); 80yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(module));
Compiler\DependencyAnalysis\CustomAttributeBasedDependencyAlgorithm.cs (1)
120CustomAttributeValue<TypeDesc> decodedValue = attribute.DecodeValue(attributeTypeProvider);
Compiler\DependencyAnalysis\PInvokeMethodFixupNode.cs (1)
150decodedAttr = attr.DecodeValue(new CustomAttributeTypeProvider(asm));
src\runtime\src\coreclr\tools\Common\Compiler\TypeMapMetadata.cs (1)
331CustomAttributeValue<TypeDesc> attrValue = attr.DecodeValue(new CustomAttributeTypeProvider(currentAssembly));
ILCompiler.ReadyToRun (3)
Compiler\AssemblyExtensions.cs (1)
29CustomAttributeValue<TypeDesc> decoded = attribute.DecodeValue(new CustomAttributeTypeProvider(assembly));
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
623var fixedArguments = customAttribute.DecodeValue(typeProvider).FixedArguments;
src\runtime\src\coreclr\tools\Common\Compiler\TypeMapMetadata.cs (1)
331CustomAttributeValue<TypeDesc> attrValue = attr.DecodeValue(new CustomAttributeTypeProvider(currentAssembly));
ILCompiler.TypeSystem (13)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
535CustomAttributeValue<TypeDesc> decoded = attribute.DecodeValue(
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaModule.cs (1)
811var dec = reader.GetCustomAttribute(attr).DecodeValue(new CustomAttributeTypeProvider(this));
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaType.cs (2)
551var value = attr.DecodeValue(new CustomAttributeTypeProvider(_module)).FixedArguments[0].Value; 577var attrValue = attr.DecodeValue(new CustomAttributeTypeProvider(_module));
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaType.TypeEquivalence.cs (1)
31guidAttribute = this.MetadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(this.Module));
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\MetadataExtensions.cs (7)
27return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This.Module)); 39yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This.Module)); 55return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This.Module)); 67yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This.Module)); 83return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This.Module)); 95yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This.Module)); 109yield return metadataReader.GetCustomAttribute(attributeHandle).DecodeValue(new CustomAttributeTypeProvider(This));
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\UnsafeAccessors.cs (1)
621CustomAttributeValue<TypeDesc> decoded = unsafeAccessorTypeAttribute.DecodeValue(
Microsoft.NET.HostModel (4)
ComHost\ClsidMap.cs (4)
147CustomAttributeValue<KnownType> data = comVisibleAttribute.DecodeValue(new TypeResolver()); 163CustomAttributeValue<KnownType> data = comVisibleAttribute.DecodeValue(new TypeResolver()); 197CustomAttributeValue<KnownType> data = attribute.DecodeValue(new TypeResolver()); 211CustomAttributeValue<KnownType> data = attribute.DecodeValue(new TypeResolver());
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeData.cs (1)
95CustomAttributeValue<RoType> cav = CustomAttribute.DecodeValue(_module);