1 instantiation of LeafRecordWriter
ILCompiler.Compiler (1)
Compiler\ObjectWriter\CodeView\CodeViewTypesBuilder.cs (1)
393return new LeafRecordWriter(this, leafRecordType);
15 references to LeafRecordWriter
ILCompiler.Compiler (15)
Compiler\ObjectWriter\CodeView\CodeViewTypesBuilder.cs (15)
69using (LeafRecordWriter record = StartLeafRecord(LF_VTSHAPE)) 75using (LeafRecordWriter record = StartLeafRecord(LF_POINTER)) 114using (LeafRecordWriter record = StartLeafRecord(LF_POINTER)) 133using (LeafRecordWriter arrayRecord = StartLeafRecord(LF_ARRAY)) 143using (LeafRecordWriter fieldListRecord = StartLeafRecord(LF_FIELDLIST)) 204using (LeafRecordWriter record = StartLeafRecord(LF_CLASS)) 227using (LeafRecordWriter fieldListRecord = StartLeafRecord(LF_FIELDLIST)) 241using (LeafRecordWriter record = StartLeafRecord(LF_ENUM)) 259using (LeafRecordWriter record = StartLeafRecord(classDescriptor.IsStruct == 1 ? LF_STRUCTURE : LF_CLASS)) 281using (LeafRecordWriter fieldListRecord = StartLeafRecord(LF_FIELDLIST)) 326using (LeafRecordWriter record = StartLeafRecord(classTypeDescriptor.IsStruct == 1 ? LF_STRUCTURE : LF_CLASS)) 346using (LeafRecordWriter fieldListRecord = StartLeafRecord(LF_ARGLIST)) 357using (LeafRecordWriter record = StartLeafRecord(LF_MFUNCTION)) 376using (LeafRecordWriter record = StartLeafRecord(LF_MFUNC_ID)) 391private LeafRecordWriter StartLeafRecord(LeafRecordType leafRecordType)