14 references to ImportScope
System.Reflection.Metadata (14)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
188case TableIndex.ImportScope: SetTableCapacity(_importScopeTable, rowCount); break; 269case TableIndex.ImportScope : return _importScopeTable.Count; 342rowCounts[(int)TableIndex.ImportScope] = _importScopeTable.Count; 1853if (metadataSizes.IsPresent(TableIndex.ImportScope))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
101TableIndex.ImportScope => reader.ImportScopeTable.RowSize, 182TableIndex.ImportScope => reader.ImportScopeTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (3)
206ImportScopeReferenceIsSmall = IsReferenceSmall(0, TableIndex.ImportScope); 235TableIndex.ImportScope); 323size += GetTableSize(TableIndex.ImportScope, importScopeReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
69ImportScope = 1UL << TableIndex.ImportScope, 239internal const uint ImportScope = (uint)TableIndex.ImportScope;
System\Reflection\Metadata\MetadataReader.cs (3)
761this.LocalScopeTable = new LocalScopeTableReader(rowCounts[(int)TableIndex.LocalScope], IsDeclaredSorted(TableMask.LocalScope), methodRefSizeCombined, GetReferenceSize(rowCounts, TableIndex.ImportScope), GetReferenceSize(rowCounts, TableIndex.LocalVariable), GetReferenceSize(rowCounts, TableIndex.LocalConstant), metadataTablesMemoryBlock, totalRequiredSize); 770this.ImportScopeTable = new ImportScopeTableReader(rowCounts[(int)TableIndex.ImportScope], GetReferenceSize(rowCounts, TableIndex.ImportScope), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);