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)
116Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 117Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 118Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 119Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 120Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 121Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 122Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 166Handle(1, TableIndex.MethodImpl), 167Handle(2, TableIndex.MethodImpl), 168Handle(3, TableIndex.MethodImpl), 169Handle(4, TableIndex.MethodImpl), 170Handle(5, TableIndex.MethodImpl), 171Handle(6, TableIndex.MethodImpl), 172Handle(7, TableIndex.MethodImpl), 282Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 283Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 409Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 410Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 411Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 412Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 413Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 414Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 415Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 491Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 492Row(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)
141Row(8, TableIndex.MethodImpl, EditAndContinueOperation.Default), 142Row(9, TableIndex.MethodImpl, EditAndContinueOperation.Default), 143Row(10, TableIndex.MethodImpl, EditAndContinueOperation.Default), 144Row(11, TableIndex.MethodImpl, EditAndContinueOperation.Default), 145Row(12, TableIndex.MethodImpl, EditAndContinueOperation.Default), 146Row(13, TableIndex.MethodImpl, EditAndContinueOperation.Default), 147Row(14, TableIndex.MethodImpl, EditAndContinueOperation.Default), 217Handle(8, TableIndex.MethodImpl), 218Handle(9, TableIndex.MethodImpl), 219Handle(10, TableIndex.MethodImpl), 220Handle(11, TableIndex.MethodImpl), 221Handle(12, TableIndex.MethodImpl), 222Handle(13, TableIndex.MethodImpl), 223Handle(14, TableIndex.MethodImpl), 482Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 483Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 537Handle(1, TableIndex.MethodImpl), 538Handle(2, TableIndex.MethodImpl), 792Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 793Row(2, TableIndex.MethodImpl, EditAndContinueOperation.Default), 794Row(3, TableIndex.MethodImpl, EditAndContinueOperation.Default), 795Row(4, TableIndex.MethodImpl, EditAndContinueOperation.Default), 796Row(5, TableIndex.MethodImpl, EditAndContinueOperation.Default), 797Row(6, TableIndex.MethodImpl, EditAndContinueOperation.Default), 798Row(7, TableIndex.MethodImpl, EditAndContinueOperation.Default), 879Row(1, TableIndex.MethodImpl, EditAndContinueOperation.Default), 880Row(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);