17 references to ExportedType
ILAssembler (3)
EntityRegistry.cs (2)
414
foreach (ExportedTypeEntity exportedType in GetSeenEntities(TableIndex.
ExportedType
))
1104
return GetOrCreateEntity((implementation as ExportedTypeEntity, @namespace, name), TableIndex.
ExportedType
, _seenExportedTypes, (key) => new(key.Item3, key.Item2, implementation), onCreateType);
GrammarVisitor.cs (1)
5533
tableStreamSize += rowCounts[(int)TableIndex.
ExportedType
] * 14; // 8+2+2+2
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
2241
metadata.SetCapacity(TableIndex.
ExportedType
, exportedTypes.Length);
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
177
case TableIndex.
ExportedType
: SetTableCapacity(_exportedTypeTable, rowCount); break;
237
case TableIndex.
ExportedType
: return _exportedTypeTable.Count;
309
rowCounts[(int)TableIndex.
ExportedType
] = _exportedTypeTable.Count;
1797
if (metadataSizes.IsPresent(TableIndex.
ExportedType
))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
88
TableIndex.
ExportedType
=> reader.ExportedTypeTable.RowSize,
169
TableIndex.
ExportedType
=> reader.ExportedTypeTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (4)
183
TableIndex.
ExportedType
,
191
ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.
ExportedType
);
227
TableIndex.
ExportedType
,
312
size += GetTableSize(TableIndex.
ExportedType
, 8 + stringReferenceSize + stringReferenceSize + implementationCodedIndexSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
57
ExportedType = 1UL << TableIndex.
ExportedType
,
226
internal const uint ExportedType = (uint)TableIndex.
ExportedType
;
System\Reflection\Metadata\MetadataReader.cs (1)
728
this.ExportedTypeTable = new ExportedTypeTableReader(rowCounts[(int)TableIndex.
ExportedType
], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);