43 references to PropertyMap
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeltaMetadataWriter.cs (6)
114
_propertyMap = new EventOrPropertyMapIndex(this.TryGetExistingPropertyMapIndex, sizes[(int)TableIndex.
PropertyMap
]);
158
sizes[(int)TableIndex.
PropertyMap
] = _propertyMap.GetAdded().Count;
1101
PopulateEncLogTableRows(TableIndex.
PropertyMap
, previousSizes, deltaSizes);
1106
PopulateEncLogTableEventsOrProperties(_propertyDefs, TableIndex.Property, EditAndContinueOperation.AddProperty, _propertyMap, TableIndex.
PropertyMap
);
1262
case TableIndex.
PropertyMap
:
1356
TableIndex.
PropertyMap
,
Emit\EditAndContinue\EmitBaseline.cs (1)
349
Debug.Assert(tableEntriesAdded[(int)TableIndex.
PropertyMap
] >= propertyMapAdded.Count);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (18)
Emit\EditAndContinue\EditAndContinueStateMachineTests.cs (7)
75
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.Default),
100
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
102
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
162
Handle(1, TableIndex.
PropertyMap
),
369
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.Default),
393
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
395
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
Emit\EditAndContinue\EditAndContinueTests.cs (11)
3992
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.Default),
3995
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
4002
Handle(1, TableIndex.
PropertyMap
),
4036
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
4681
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
4886
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
5165
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
7415
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
15732
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
15814
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
15945
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (8)
Emit\EditAndContinue\EditAndContinueStateMachineTests.vb (7)
98
Row(2, TableIndex.
PropertyMap
, EditAndContinueOperation.Default),
125
Row(2, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
127
Row(2, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
213
Handle(2, TableIndex.
PropertyMap
),
753
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.Default),
779
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
781
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
Emit\EditAndContinue\EditAndContinueTests.vb (1)
2331
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty), ' Action<bool> P
System.Reflection.Metadata (10)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
164
case TableIndex.
PropertyMap
: SetTableCapacity(_propertyMapTable, rowCount); break;
257
case TableIndex.
PropertyMap
: return _propertyMapTable.Count;
329
rowCounts[(int)TableIndex.
PropertyMap
] = _propertyMapTable.Count;
1732
if (metadataSizes.IsPresent(TableIndex.
PropertyMap
))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
70
TableIndex.
PropertyMap
=> reader.PropertyMapTable.RowSize,
151
TableIndex.
PropertyMap
=> reader.PropertyMapTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (1)
293
size += GetTableSize(TableIndex.
PropertyMap
, typeDefReferenceSize + propertyDefReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
39
PropertyMap = 1UL << TableIndex.
PropertyMap
,
217
internal const uint PropertyMap = (uint)TableIndex.
PropertyMap
;
System\Reflection\Metadata\MetadataReader.cs (1)
674
this.PropertyMapTable = new PropertyMapTableReader(rowCounts[(int)TableIndex.
PropertyMap
], GetReferenceSize(rowCounts, TableIndex.TypeDef), propertyRefSizeSorted, metadataTablesMemoryBlock, totalRequiredSize);