42 references to ExportedType
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
2231metadata.SetCapacity(TableIndex.ExportedType, exportedTypes.Length);
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (6)
Attributes\AttributeTests_Assembly.cs (6)
1066Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1113Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1134Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1187Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1228Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1249Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (7)
Symbols\Metadata\PE\TypeForwarders.cs (7)
1511Assert.Equal(forwardedTypeFullNames.Length, metadataReader.GetTableRowCount(TableIndex.ExportedType)); 1636Assert.Equal(1, peReader.GetTableRowCount(TableIndex.ExportedType)); 1647Assert.Equal(1, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1690Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1700Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)); 1710Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)); 1780Assert.Equal(forwardedTypeFullNames.Length, peReader.GetTableRowCount(TableIndex.ExportedType));
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (6)
Attributes\AssemblyAttributes.vb (6)
1298Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1336Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1352Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1415Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1447Assert.Equal(3, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1463Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType))
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (9)
SymbolsTests\Metadata\PE\TypeForwarders.vb (9)
1024Assert.Equal(0, peReader.GetTableRowCount(TableIndex.ExportedType)) 1065Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1073Assert.Equal(0, peReader1.GetTableRowCount(TableIndex.ExportedType)) 1118Assert.Equal(1, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1128Assert.Equal(1, metadataReader1.GetTableRowCount(TableIndex.ExportedType)) 1178Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1187Assert.Equal(0, metadataReader1.GetTableRowCount(TableIndex.ExportedType)) 1198Assert.Equal(0, metadataReader.GetTableRowCount(TableIndex.ExportedType)) 1307Assert.Equal(2, peReader1.GetTableRowCount(TableIndex.ExportedType))
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
177case TableIndex.ExportedType: SetTableCapacity(_exportedTypeTable, rowCount); break; 237case TableIndex.ExportedType : return _exportedTypeTable.Count; 309rowCounts[(int)TableIndex.ExportedType] = _exportedTypeTable.Count; 1797if (metadataSizes.IsPresent(TableIndex.ExportedType))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
88TableIndex.ExportedType => reader.ExportedTypeTable.RowSize, 169TableIndex.ExportedType => reader.ExportedTypeTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (4)
182TableIndex.ExportedType, 190ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.ExportedType); 226TableIndex.ExportedType, 311size += GetTableSize(TableIndex.ExportedType, 8 + stringReferenceSize + stringReferenceSize + implementationCodedIndexSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
57ExportedType = 1UL << TableIndex.ExportedType, 226internal const uint ExportedType = (uint)TableIndex.ExportedType;
System\Reflection\Metadata\MetadataReader.cs (1)
728this.ExportedTypeTable = new ExportedTypeTableReader(rowCounts[(int)TableIndex.ExportedType], implementationRefSize, stringHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);