28 references to Property
ILAssembler (4)
EntityRegistry.cs (3)
142RecordEntityInTable(TableIndex.Property, property); 354foreach (PropertyEntity prop in GetSeenEntities(TableIndex.Property)) 467=> (PropertyDefinitionHandle)GetHandleForList(list, listOwner, getList, ownerIndex, TableIndex.Property);
GrammarVisitor.cs (1)
5523tableStreamSize += rowCounts[(int)TableIndex.Property] * 6; // 2+2+2
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeltaMetadataWriter.cs (5)
106_propertyDefs = new DefinitionIndex<IPropertyDefinition>(this.TryGetExistingPropertyDefIndex, sizes[(int)TableIndex.Property]); 179sizes[(int)TableIndex.Property] = _propertyDefs.GetAdded().Count; 1170PopulateEncLogTableEventsOrProperties(_propertyDefs, TableIndex.Property, EditAndContinueOperation.AddProperty, _propertyMap, TableIndex.PropertyMap); 1357case TableIndex.Property: 1421TableIndex.Property,
Emit\EditAndContinue\EmitBaseline.cs (1)
347Debug.Assert(tableEntriesAdded[(int)TableIndex.Property] >= propertiesAdded.Count);
PEWriter\MetadataWriter.cs (1)
2807metadata.SetCapacity(TableIndex.Property, propertyDefs.Count);
System.Reflection.Metadata (17)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
165case TableIndex.Property: SetTableCapacity(_propertyTable, rowCount); break; 258case TableIndex.Property : return _propertyTable.Count; 330rowCounts[(int)TableIndex.Property] = _propertyTable.Count; 1737if (metadataSizes.IsPresent(TableIndex.Property))
System\Reflection\Metadata\Ecma335\MetadataReaderExtensions.cs (2)
72TableIndex.Property => reader.PropertyTable.RowSize, 153TableIndex.Property => reader.PropertyTable.Block,
System\Reflection\Metadata\Ecma335\MetadataSizes.cs (6)
163HasConstantCodedIndexIsSmall = IsReferenceSmall(2, TableIndex.Field, TableIndex.Param, TableIndex.Property); 175TableIndex.Property, 190HasSemanticsCodedIndexIsSmall = IsReferenceSmall(1, TableIndex.Event, TableIndex.Property); 198PropertyDefReferenceIsSmall = IsReferenceSmall(0, TableIndex.Property); 219TableIndex.Property, 296size += GetTableSize(TableIndex.Property, 2 + stringReferenceSize + blobReferenceSize);
System\Reflection\Metadata\Internal\MetadataFlags.cs (2)
41Property = 1UL << TableIndex.Property, 218internal const uint Property = (uint)TableIndex.Property;
System\Reflection\Metadata\MetadataReader.cs (3)
581int propertyRefSizeSorted = GetReferenceSize(rowCounts, TableIndex.PropertyPtr) > SmallIndexSize ? LargeIndexSize : GetReferenceSize(rowCounts, TableIndex.Property); 677this.PropertyPtrTable = new PropertyPtrTableReader(rowCounts[(int)TableIndex.PropertyPtr], GetReferenceSize(rowCounts, TableIndex.Property), metadataTablesMemoryBlock, totalRequiredSize); 680this.PropertyTable = new PropertyTableReader(rowCounts[(int)TableIndex.Property], stringHeapRefSize, blobHeapRefSize, metadataTablesMemoryBlock, totalRequiredSize);