6 instantiations of ListBuilder
System.Private.CoreLib (6)
src\System\RuntimeType.CoreCLR.cs (6)
2525
ListBuilder<MethodInfo> candidates = new
ListBuilder
<MethodInfo>(cache.Length);
2550
ListBuilder<ConstructorInfo> candidates = new
ListBuilder
<ConstructorInfo>(cache.Length);
2573
ListBuilder<PropertyInfo> candidates = new
ListBuilder
<PropertyInfo>(cache.Length);
2596
ListBuilder<EventInfo> candidates = new
ListBuilder
<EventInfo>(cache.Length);
2618
ListBuilder<FieldInfo> candidates = new
ListBuilder
<FieldInfo>(cache.Length);
2640
ListBuilder<Type> candidates = new
ListBuilder
<Type>(cache.Length);
46 references to ListBuilder
System.Private.CoreLib (46)
src\System\Reflection\RuntimeCustomAttributeData.cs (5)
23
RuntimeType.
ListBuilder
<Attribute> pcas = default;
33
RuntimeType.
ListBuilder
<Attribute> pcas = default;
43
RuntimeType.
ListBuilder
<Attribute> pcas = default;
92
RuntimeType.
ListBuilder
<Attribute> pcas = default;
98
private static ReadOnlyCollection<CustomAttributeData> GetCombinedList(IList<CustomAttributeData> customAttributes, ref RuntimeType.
ListBuilder
<Attribute> pseudoAttributes)
src\System\RuntimeType.CoreCLR.cs (41)
597
ListBuilder
<RuntimeMethodInfo> list = default;
761
ListBuilder
<RuntimeConstructorInfo> list = default;
809
ListBuilder
<RuntimeFieldInfo> list = default;
850
private unsafe void PopulateRtFields(Filter filter, RuntimeType declaringType, ref
ListBuilder
<RuntimeFieldInfo> list)
867
ReadOnlySpan<IntPtr> fieldHandles, RuntimeType declaringType, ref
ListBuilder
<RuntimeFieldInfo> list)
913
private void PopulateLiteralFields(Filter filter, RuntimeType declaringType, ref
ListBuilder
<RuntimeFieldInfo> list)
973
ref
ListBuilder
<RuntimeType> list,
1002
ListBuilder
<RuntimeType> list = default;
1089
ListBuilder
<RuntimeType> list = default;
1132
ListBuilder
<RuntimeEventInfo> list = default;
1157
Filter filter, RuntimeType declaringType, Dictionary<string, RuntimeEventInfo>? csEventInfos, ref
ListBuilder
<RuntimeEventInfo> list)
1225
ListBuilder
<RuntimePropertyInfo> list = default;
1272
ref
ListBuilder
<RuntimePropertyInfo> list)
2517
private
ListBuilder
<MethodInfo> GetMethodCandidates(
2525
ListBuilder
<MethodInfo> candidates = new ListBuilder<MethodInfo>(cache.Length);
2542
private
ListBuilder
<ConstructorInfo> GetConstructorCandidates(
2550
ListBuilder
<ConstructorInfo> candidates = new ListBuilder<ConstructorInfo>(cache.Length);
2564
private
ListBuilder
<PropertyInfo> GetPropertyCandidates(
2573
ListBuilder
<PropertyInfo> candidates = new ListBuilder<PropertyInfo>(cache.Length);
2588
private
ListBuilder
<EventInfo> GetEventCandidates(string? name, BindingFlags bindingAttr, bool allowPrefixLookup)
2596
ListBuilder
<EventInfo> candidates = new ListBuilder<EventInfo>(cache.Length);
2610
private
ListBuilder
<FieldInfo> GetFieldCandidates(string? name, BindingFlags bindingAttr, bool allowPrefixLookup)
2618
ListBuilder
<FieldInfo> candidates = new ListBuilder<FieldInfo>(cache.Length);
2632
private
ListBuilder
<Type> GetNestedTypeCandidates(string? fullname, BindingFlags bindingAttr, bool allowPrefixLookup)
2640
ListBuilder
<Type> candidates = new ListBuilder<Type>(cache.Length);
2701
ListBuilder
<MethodInfo> methods = GetMethodCandidates(null, GenericParameterCountAny, bindingAttr, CallingConventions.Any, null, false);
2702
ListBuilder
<ConstructorInfo> constructors = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, null, false);
2703
ListBuilder
<PropertyInfo> properties = GetPropertyCandidates(null, bindingAttr, null, false);
2704
ListBuilder
<EventInfo> events = GetEventCandidates(null, bindingAttr, false);
2705
ListBuilder
<FieldInfo> fields = GetFieldCandidates(null, bindingAttr, false);
2706
ListBuilder
<Type> nestedTypes = GetNestedTypeCandidates(null, bindingAttr, false);
2816
ListBuilder
<MethodInfo> candidates = GetMethodCandidates(name, genericParameterCount, bindingAttr, callConv, types, false);
2852
ListBuilder
<ConstructorInfo> candidates = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, types, false);
2880
ListBuilder
<PropertyInfo> candidates = GetPropertyCandidates(name, bindingAttr, types, false);
3051
ListBuilder
<MethodInfo> methods = default;
3052
ListBuilder
<ConstructorInfo> constructors = default;
3053
ListBuilder
<PropertyInfo> properties = default;
3054
ListBuilder
<EventInfo> events = default;
3055
ListBuilder
<FieldInfo> fields = default;
3056
ListBuilder
<Type> nestedTypes = default;
3887
ListBuilder
<ConstructorInfo> candidates = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, null, false);