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
115
private class NonGenericStaticConstrainedMethodCell :
GenericDictionaryCell
152
private class NonGenericInstanceConstrainedMethodCell :
GenericDictionaryCell
183
private class GenericConstrainedMethodCell :
GenericDictionaryCell
213
private class StaticDataCell :
GenericDictionaryCell
250
private class ThreadStaticIndexCell :
GenericDictionaryCell
268
private class MethodDictionaryCell :
GenericDictionaryCell
287
private class FieldLdTokenCell :
GenericDictionaryCell
310
private class MethodLdTokenCell :
GenericDictionaryCell
344
private class AllocateObjectCell :
GenericDictionaryCell
370
private class DefaultConstructorCell :
GenericDictionaryCell
400
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)
418
internal static unsafe
GenericDictionaryCell
[] BuildDictionary(TypeBuilder typeBuilder, NativeLayoutInfoLoadContext nativeLayoutInfoLoadContext, NativeParser parser)
427
GenericDictionaryCell
[] dictionary = new
GenericDictionaryCell
[count];
442
internal static
GenericDictionaryCell
ParseAndCreateCell(NativeLayoutInfoLoadContext nativeLayoutInfoLoadContext, ref NativeParser parser)
444
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);