22 references to MethodImpl
ILAssembler (2)
EntityRegistry.cs (1)
157RecordEntityInTable(TableIndex.MethodImpl, impl);
GrammarVisitor.cs (1)
5525tableStreamSize += rowCounts[(int)TableIndex.MethodImpl] * 6; // 2+2+2
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeltaMetadataWriter.cs (5)
112_methodImpls = new MethodImplIndex(this, sizes[(int)TableIndex.MethodImpl]); 180sizes[(int)TableIndex.MethodImpl] = _methodImpls.GetAdded().Count; 1187PopulateEncLogTableRows(TableIndex.MethodImpl, previousSizes, deltaSizes); 1328case TableIndex.MethodImpl: 1423TableIndex.MethodImpl,
Emit\EditAndContinue\EmitBaseline.cs (1)
534int n = reader.GetTableRowCount(TableIndex.MethodImpl);
PEWriter\MetadataWriter.cs (1)
2629metadata.SetCapacity(TableIndex.MethodImpl, methodImplList.Count);
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (5)
167case TableIndex.MethodImpl: SetTableCapacity(_methodImplTable, rowCount); break; 249case TableIndex.MethodImpl : return _methodImplTable.Count; 321rowCounts[(int)TableIndex.MethodImpl] = _methodImplTable.Count; 1569Throw.InvalidOperation_TableNotSorted(TableIndex.MethodImpl); 1747if (metadataSizes.IsPresent(TableIndex.MethodImpl))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
74TableIndex.MethodImpl => reader.MethodImplTable.RowSize, 155TableIndex.MethodImpl => reader.MethodImplTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (2)
321UL << (int)TableIndex.MethodImpl | 298size += GetTableSize(TableIndex.MethodImpl, typeDefReferenceSize + methodDefOrRefCodedIndexSize + methodDefOrRefCodedIndexSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
43MethodImpl = 1UL << TableIndex.MethodImpl, 220internal const uint MethodImpl = (uint)TableIndex.MethodImpl;
System\Reflection\Metadata\Internal\Tables.cs (1)
1600Throw.TableNotSorted(TableIndex.MethodImpl);
System\Reflection\Metadata\MetadataReader.cs (1)
686this.MethodImplTable = new MethodImplTableReader(rowCounts[(int)TableIndex.MethodImpl], IsDeclaredSorted(TableMask.MethodImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), methodDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize);