12 references to CustomDebugInformation
System.Reflection.Metadata (12)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
190
case TableIndex.
CustomDebugInformation
: SetTableCapacity(_customDebugInformationTable, rowCount); break;
270
case TableIndex.
CustomDebugInformation
: return _customDebugInformationTable.Count;
343
rowCounts[(int)TableIndex.
CustomDebugInformation
] = _customDebugInformationTable.Count;
1863
if (metadataSizes.IsPresent(TableIndex.
CustomDebugInformation
))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
103
TableIndex.
CustomDebugInformation
=> reader.CustomDebugInformationTable.RowSize,
184
TableIndex.
CustomDebugInformation
=> reader.CustomDebugInformationTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (2)
41
1UL << (int)TableIndex.
CustomDebugInformation
;
325
size += GetTableSize(TableIndex.
CustomDebugInformation
, hasCustomDebugInformationCodedIndexSize + guidReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
71
CustomDebugInformation = 1UL << TableIndex.
CustomDebugInformation
,
241
internal const uint CustomDebugInformation = (uint)TableIndex.
CustomDebugInformation
;
System\Reflection\Metadata\MetadataReader.cs (1)
776
this.CustomDebugInformationTable = new CustomDebugInformationTableReader(rowCounts[(int)TableIndex.
CustomDebugInformation
], IsDeclaredSorted(TableMask.CustomDebugInformation), hasCustomDebugInformationRefSizeCombined, guidHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);
System\Reflection\Metadata\PortablePdb\Tables.Debug.cs (1)
465
Throw.TableNotSorted(TableIndex.
CustomDebugInformation
);