47 references to MethodImpl
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeltaMetadataWriter.cs (5)
111
_methodImpls = new MethodImplIndex(this, sizes[(int)TableIndex.
MethodImpl
]);
170
sizes[(int)TableIndex.
MethodImpl
] = _methodImpls.GetAdded().Count;
1173
PopulateEncLogTableRows(TableIndex.
MethodImpl
, previousSizes, deltaSizes);
1314
case TableIndex.
MethodImpl
:
1409
TableIndex.
MethodImpl
,
Emit\EditAndContinue\EmitBaseline.cs (1)
534
int n = reader.GetTableRowCount(TableIndex.
MethodImpl
);
PEWriter\MetadataWriter.cs (1)
2595
metadata.SetCapacity(TableIndex.
MethodImpl
, methodImplList.Count);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (27)
Emit\EditAndContinue\EditAndContinueStateMachineTests.cs (25)
117
Row(1, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
118
Row(2, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
119
Row(3, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
120
Row(4, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
121
Row(5, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
122
Row(6, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
123
Row(7, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
167
Handle(1, TableIndex.
MethodImpl
),
168
Handle(2, TableIndex.
MethodImpl
),
169
Handle(3, TableIndex.
MethodImpl
),
170
Handle(4, TableIndex.
MethodImpl
),
171
Handle(5, TableIndex.
MethodImpl
),
172
Handle(6, TableIndex.
MethodImpl
),
173
Handle(7, TableIndex.
MethodImpl
),
283
Row(1, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
284
Row(2, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
410
Row(1, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
411
Row(2, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
412
Row(3, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
413
Row(4, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
414
Row(5, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
415
Row(6, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
416
Row(7, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
492
Row(1, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
493
Row(2, TableIndex.
MethodImpl
, EditAndContinueOperation.Default),
Emit\EditAndContinue\EditAndContinueTests.cs (2)
7776
Row(2, TableIndex.
MethodImpl
, EditAndContinueOperation.Default));
7781
Handle(2, TableIndex.
MethodImpl
),
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (5)
167
case TableIndex.
MethodImpl
: SetTableCapacity(_methodImplTable, rowCount); break;
249
case TableIndex.
MethodImpl
: return _methodImplTable.Count;
321
rowCounts[(int)TableIndex.
MethodImpl
] = _methodImplTable.Count;
1569
Throw.InvalidOperation_TableNotSorted(TableIndex.
MethodImpl
);
1747
if (metadataSizes.IsPresent(TableIndex.
MethodImpl
))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
74
TableIndex.
MethodImpl
=> reader.MethodImplTable.RowSize,
155
TableIndex.
MethodImpl
=> reader.MethodImplTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (2)
31
1UL << (int)TableIndex.
MethodImpl
|
297
size += GetTableSize(TableIndex.
MethodImpl
, typeDefReferenceSize + methodDefOrRefCodedIndexSize + methodDefOrRefCodedIndexSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
43
MethodImpl = 1UL << TableIndex.
MethodImpl
,
220
internal const uint MethodImpl = (uint)TableIndex.
MethodImpl
;
System\Reflection\Metadata\Internal\Tables.cs (1)
1600
Throw.TableNotSorted(TableIndex.
MethodImpl
);
System\Reflection\Metadata\MetadataReader.cs (1)
686
this.MethodImplTable = new MethodImplTableReader(rowCounts[(int)TableIndex.
MethodImpl
], IsDeclaredSorted(TableMask.MethodImpl), GetReferenceSize(rowCounts, TableIndex.TypeDef), methodDefOrRefRefSize, metadataTablesMemoryBlock, totalRequiredSize);