17 references to File
ILAssembler (3)
EntityRegistry.cs (2)
406foreach (FileEntity file in GetSeenEntities(TableIndex.File)) 1057return GetOrCreateEntity(name, TableIndex.File, _seenFiles, (name) => new FileEntity(name), entity =>
GrammarVisitor.cs (1)
5532tableStreamSize += rowCounts[(int)TableIndex.File] * 8; // 4+2+2
Microsoft.CodeAnalysis (1)
PEWriter\MetadataWriter.cs (1)
2452metadata.SetCapacity(TableIndex.File, _fileRefList.Count);
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)
182TableIndex.File, 191ImplementationCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.File, TableIndex.AssemblyRef, TableIndex.ExportedType); 226TableIndex.File, 311size += 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);