15 types derived from GenericDictionaryCell
System.Private.TypeLoader (15)
Internal\Runtime\TypeLoader\GenericDictionaryCell.cs (15)
44
private class TypeHandleCell :
GenericDictionaryCell
62
private class UnwrapNullableTypeCell :
GenericDictionaryCell
89
private class InterfaceCallCell :
GenericDictionaryCell
113
private class GvmDispatchCell :
GenericDictionaryCell
149
private class NonGenericStaticConstrainedMethodCell :
GenericDictionaryCell
186
private class NonGenericInstanceConstrainedMethodCell :
GenericDictionaryCell
217
private class GenericConstrainedMethodCell :
GenericDictionaryCell
247
private class StaticDataCell :
GenericDictionaryCell
284
private class ThreadStaticIndexCell :
GenericDictionaryCell
302
private class MethodDictionaryCell :
GenericDictionaryCell
321
private class FieldLdTokenCell :
GenericDictionaryCell
344
private class MethodLdTokenCell :
GenericDictionaryCell
377
private class AllocateObjectCell :
GenericDictionaryCell
403
private class DefaultConstructorCell :
GenericDictionaryCell
433
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)
451
internal static unsafe
GenericDictionaryCell
[] BuildDictionary(TypeBuilder typeBuilder, NativeLayoutInfoLoadContext nativeLayoutInfoLoadContext, NativeParser parser)
460
GenericDictionaryCell
[] dictionary = new
GenericDictionaryCell
[count];
475
internal static
GenericDictionaryCell
ParseAndCreateCell(NativeLayoutInfoLoadContext nativeLayoutInfoLoadContext, ref NativeParser parser)
477
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()));
1155
GenericTypeDictionary ucgDict = new GenericTypeDictionary(
GenericDictionaryCell
.BuildDictionary(this, nlilContext, parser));
1170
GenericDictionaryCell
cell =
GenericDictionaryCell
.ParseAndCreateCell(nlilContext, ref parser);