11 references to MethodDebugInformation
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
1386
AddDefinitionTokens(debugTokens, TableIndex.
MethodDebugInformation
, _methodDefs);
System.Reflection.Metadata (10)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
184
case TableIndex.
MethodDebugInformation
: SetTableCapacity(_methodDebugInformationTable, rowCount); break;
264
case TableIndex.
MethodDebugInformation
: return _methodDebugInformationTable.Count;
337
rowCounts[(int)TableIndex.
MethodDebugInformation
] = _methodDebugInformationTable.Count;
1833
if (metadataSizes.IsPresent(TableIndex.
MethodDebugInformation
))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
97
TableIndex.
MethodDebugInformation
=> reader.MethodDebugInformationTable.RowSize,
178
TableIndex.
MethodDebugInformation
=> reader.MethodDebugInformationTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (1)
320
size += GetTableSize(TableIndex.
MethodDebugInformation
, documentReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
65
MethodDebugInformation = 1UL << TableIndex.
MethodDebugInformation
,
235
internal const uint MethodDebugInformation = (uint)TableIndex.
MethodDebugInformation
;
System\Reflection\Metadata\MetadataReader.cs (1)
758
this.MethodDebugInformationTable = new MethodDebugInformationTableReader(rowCounts[(int)TableIndex.
MethodDebugInformation
], GetReferenceSize(rowCounts, TableIndex.Document), blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);