1 write to FixedArguments
ILCompiler.MetadataTransform (1)
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (1)
2138
FixedArguments
= visitor.Visit(this, FixedArguments);
11 references to FixedArguments
ILCompiler.MetadataTransform (11)
ILCompiler\Metadata\Transform.CustomAttribute.cs (2)
54
result.
FixedArguments
.Capacity = sig.Length;
60
result.
FixedArguments
.Add(fixedArgument);
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (8)
2138
FixedArguments = visitor.Visit(this,
FixedArguments
);
2153
if (!
FixedArguments
.SequenceEqual(other.
FixedArguments
)) return false;
2172
for (int i = 0; i <
FixedArguments
.Count; i++)
2174
hash = ((hash << 13) - (hash >> 19)) ^ (
FixedArguments
[i] == null ? 0 :
FixedArguments
[i].GetHashCode());
2191
Debug.Assert(
FixedArguments
.TrueForAll(handle => handle == null ||
2225
writer.Write(
FixedArguments
);
Internal\Metadata\NativeFormat\Writer\NativeMetadataWriter.cs (1)
843
str += "(" + string.Join(", ",
FixedArguments
)