27 references to ExportedType
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
2230
metadata.SetCapacity(TableIndex.
ExportedType
, exportedTypes.Length);
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (6)
Attributes\AttributeTests_Assembly.cs (6)
1066
Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
1113
Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
1134
Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
1187
Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
1228
Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
1249
Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (7)
Symbols\Metadata\PE\TypeForwarders.cs (7)
1534
Assert.Equal(forwardedTypeFullNames.Length, metadataReader.GetTableRowCount(TableIndex.
ExportedType
));
1659
Assert.Equal(1, peReader.GetTableRowCount(TableIndex.
ExportedType
));
1670
Assert.Equal(1, peReader1.GetTableRowCount(TableIndex.
ExportedType
));
1713
Assert.Equal(0, peReader.GetTableRowCount(TableIndex.
ExportedType
));
1723
Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.
ExportedType
));
1733
Assert.Equal(0, peReader.GetTableRowCount(TableIndex.
ExportedType
));
1803
Assert.Equal(forwardedTypeFullNames.Length, peReader.GetTableRowCount(TableIndex.
ExportedType
));
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)
182
TableIndex.
ExportedType
,
190
ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.
ExportedType
);
226
TableIndex.
ExportedType
,
311
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);