13 references to File
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
176case TableIndex.File: SetTableCapacity(_fileTable, rowCount); break; 242case TableIndex.File : return _fileTable.Count; 314rowCounts[(int)TableIndex.File] = _fileTable.Count; 1792if (metadataSizes.IsPresent(TableIndex.File))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
87TableIndex.File => reader.FileTable.RowSize, 168TableIndex.File => reader.FileTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (4)
181TableIndex.File, 190ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.ExportedType); 225TableIndex.File, 310size += GetTableSize(TableIndex.File, 4 + stringReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
56File = 1UL << TableIndex.File, 225internal const uint File = (uint)TableIndex.File;
System\Reflection\Metadata\MetadataReader.cs (1)
725this.FileTable = new FileTableReader(rowCounts[(int)TableIndex.File], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);