80 references to MethodImpl
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeltaMetadataWriter.cs (5)
115_methodImpls = new MethodImplIndex(this, sizes[(int)TableIndex.MethodImpl]); 160sizes[(int)TableIndex.MethodImpl] = _methodImpls.GetAdded().Count; 1123PopulateEncLogTableRows(TableIndex.MethodImpl, previousSizes, deltaSizes); 1264case TableIndex.MethodImpl: 1359TableIndex.MethodImpl,
Emit\EditAndContinue\EmitBaseline.cs (1)
534int n = reader.GetTableRowCount(TableIndex.MethodImpl);
PEWriter\MetadataWriter.cs (1)
2589metadata.SetCapacity(TableIndex.MethodImpl, methodImplList.Count);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (27)
Emit\EditAndContinue\EditAndContinueStateMachineTests.cs (25)
117Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 118Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 119Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 120Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 121Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 122Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 123Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 167Handle(1, TableIndex.MethodImpl), 168Handle(2, TableIndex.MethodImpl), 169Handle(3, TableIndex.MethodImpl), 170Handle(4, TableIndex.MethodImpl), 171Handle(5, TableIndex.MethodImpl), 172Handle(6, TableIndex.MethodImpl), 173Handle(7, TableIndex.MethodImpl), 283Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 284Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 410Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 411Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 412Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 413Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 414Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 415Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 416Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 492Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 493Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default),
Emit\EditAndContinue\EditAndContinueTests.cs (2)
7044Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default)); 7049Handle(2, TableIndex.MethodImpl),
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (33)
Emit\EditAndContinue\EditAndContinueStateMachineTests.vb (27)
142Row(8, TableIndex.MethodImpl, EditAndContinueOperation.Default), 143Row(9, TableIndex.MethodImpl, EditAndContinueOperation.Default), 144Row(10, TableIndex.MethodImpl, EditAndContinueOperation.Default), 145Row(11, TableIndex.MethodImpl, EditAndContinueOperation.Default), 146Row(12, TableIndex.MethodImpl, EditAndContinueOperation.Default), 147Row(13, TableIndex.MethodImpl, EditAndContinueOperation.Default), 148Row(14, TableIndex.MethodImpl, EditAndContinueOperation.Default), 218Handle(8, TableIndex.MethodImpl), 219Handle(9, TableIndex.MethodImpl), 220Handle(10, TableIndex.MethodImpl), 221Handle(11, TableIndex.MethodImpl), 222Handle(12, TableIndex.MethodImpl), 223Handle(13, TableIndex.MethodImpl), 224Handle(14, TableIndex.MethodImpl), 486Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 487Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 541Handle(1, TableIndex.MethodImpl), 542Handle(2, TableIndex.MethodImpl), 796Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 797Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 798Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 799Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 800Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 801Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 802Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 883Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 884Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default),
Emit\EditAndContinue\EditAndContinueTests.vb (6)
461Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 462Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 475Handle(1, TableIndex.MethodImpl), 476Handle(2, TableIndex.MethodImpl), 525Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 535Handle(3, TableIndex.MethodImpl),
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)
311UL << (int)TableIndex.MethodImpl | 297size += 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)
1554Throw.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);