1 instantiation of ReadOnlyDataBlobKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
945
return _readOnlyDataBlobs.GetOrAdd(new
ReadOnlyDataBlobKey
(name, blobData, alignment));
6 references to ReadOnlyDataBlobKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
270
_readOnlyDataBlobs = new NodeCache<
ReadOnlyDataBlobKey
, BlobNode>(key =>
941
private NodeCache<
ReadOnlyDataBlobKey
, BlobNode> _readOnlyDataBlobs;
1793
protected struct ReadOnlyDataBlobKey : IEquatable<
ReadOnlyDataBlobKey
>
1809
public bool Equals(
ReadOnlyDataBlobKey
other) => Name.Equals(other.Name);
1810
public override bool Equals(object obj) => obj is
ReadOnlyDataBlobKey
&& Equals((
ReadOnlyDataBlobKey
)obj);