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