43 references to PropertyMap
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeltaMetadataWriter.cs (6)
110
_propertyMap = new EventOrPropertyMapIndex(this.TryGetExistingPropertyMapIndex, sizes[(int)TableIndex.
PropertyMap
]);
168
sizes[(int)TableIndex.
PropertyMap
] = _propertyMap.GetAdded().Count;
1113
PopulateEncLogTableRows(TableIndex.
PropertyMap
, previousSizes, deltaSizes);
1118
PopulateEncLogTableEventsOrProperties(_propertyDefs, TableIndex.Property, EditAndContinueOperation.AddProperty, _propertyMap, TableIndex.
PropertyMap
);
1274
case TableIndex.
PropertyMap
:
1368
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)
3920
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.Default),
3923
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
3930
Handle(1, TableIndex.
PropertyMap
),
3964
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
4884
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
5093
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
5381
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
7648
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
15951
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
16033
Row(1, TableIndex.
PropertyMap
, EditAndContinueOperation.AddProperty),
16168
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)
2343
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);