14 types derived from GenericDictionaryCell
System.Private.TypeLoader (14)
Internal\Runtime\TypeLoader\GenericDictionaryCell.cs (14)
42
private class TypeHandleCell :
GenericDictionaryCell
60
private class UnwrapNullableTypeCell :
GenericDictionaryCell
87
private class InterfaceCallCell :
GenericDictionaryCell
109
private class NonGenericStaticConstrainedMethodCell :
GenericDictionaryCell
146
private class NonGenericInstanceConstrainedMethodCell :
GenericDictionaryCell
177
private class GenericConstrainedMethodCell :
GenericDictionaryCell
207
private class StaticDataCell :
GenericDictionaryCell
244
private class ThreadStaticIndexCell :
GenericDictionaryCell
262
private class MethodDictionaryCell :
GenericDictionaryCell
281
private class FieldLdTokenCell :
GenericDictionaryCell
304
private class MethodLdTokenCell :
GenericDictionaryCell
338
private class AllocateObjectCell :
GenericDictionaryCell
364
private class DefaultConstructorCell :
GenericDictionaryCell
394
private class MethodCell :
GenericDictionaryCell
15 references to GenericDictionaryCell
System.Private.TypeLoader (15)
Internal\Runtime\TypeLoader\GenericDictionary.cs (4)
15
protected
GenericDictionaryCell
[] _cells;
18
public GenericDictionary(
GenericDictionaryCell
[] cells)
40
public GenericTypeDictionary(
GenericDictionaryCell
[] cells)
60
public GenericMethodDictionary(
GenericDictionaryCell
[] cells)
Internal\Runtime\TypeLoader\GenericDictionaryCell.cs (5)
412
internal static unsafe
GenericDictionaryCell
[] BuildDictionary(TypeBuilder typeBuilder, NativeLayoutInfoLoadContext nativeLayoutInfoLoadContext, NativeParser parser)
421
GenericDictionaryCell
[] dictionary = new
GenericDictionaryCell
[count];
436
internal static
GenericDictionaryCell
ParseAndCreateCell(NativeLayoutInfoLoadContext nativeLayoutInfoLoadContext, ref NativeParser parser)
438
GenericDictionaryCell
cell;
Internal\Runtime\TypeLoader\TypeBuilder.cs (6)
329
method.SetGenericDictionary(new GenericMethodDictionary(
GenericDictionaryCell
.BuildDictionary(this, context, methodInfoParser.GetParserFromRelativeOffset())));
339
method.SetGenericDictionary(new GenericMethodDictionary(Array.Empty<
GenericDictionaryCell
>()));
414
state.Dictionary = new GenericTypeDictionary(
GenericDictionaryCell
.BuildDictionary(this, context, typeInfoParser.GetParserFromRelativeOffset()));
1092
GenericTypeDictionary ucgDict = new GenericTypeDictionary(
GenericDictionaryCell
.BuildDictionary(this, nlilContext, parser));
1107
GenericDictionaryCell
cell =
GenericDictionaryCell
.ParseAndCreateCell(nlilContext, ref parser);