6 instantiations of ListBuilder
System.Private.CoreLib (6)
src\System\RuntimeType.CoreCLR.cs (6)
2506ListBuilder<MethodInfo> candidates = new ListBuilder<MethodInfo>(cache.Length); 2531ListBuilder<ConstructorInfo> candidates = new ListBuilder<ConstructorInfo>(cache.Length); 2554ListBuilder<PropertyInfo> candidates = new ListBuilder<PropertyInfo>(cache.Length); 2577ListBuilder<EventInfo> candidates = new ListBuilder<EventInfo>(cache.Length); 2599ListBuilder<FieldInfo> candidates = new ListBuilder<FieldInfo>(cache.Length); 2621ListBuilder<Type> candidates = new ListBuilder<Type>(cache.Length);
46 references to ListBuilder
System.Private.CoreLib (46)
src\System\Reflection\RuntimeCustomAttributeData.cs (5)
23RuntimeType.ListBuilder<Attribute> pcas = default; 33RuntimeType.ListBuilder<Attribute> pcas = default; 43RuntimeType.ListBuilder<Attribute> pcas = default; 92RuntimeType.ListBuilder<Attribute> pcas = default; 98private static ReadOnlyCollection<CustomAttributeData> GetCombinedList(IList<CustomAttributeData> customAttributes, ref RuntimeType.ListBuilder<Attribute> pseudoAttributes)
src\System\RuntimeType.CoreCLR.cs (41)
584ListBuilder<RuntimeMethodInfo> list = default; 750ListBuilder<RuntimeConstructorInfo> list = default; 798ListBuilder<RuntimeFieldInfo> list = default; 839private unsafe void PopulateRtFields(Filter filter, RuntimeType declaringType, ref ListBuilder<RuntimeFieldInfo> list) 856ReadOnlySpan<IntPtr> fieldHandles, RuntimeType declaringType, ref ListBuilder<RuntimeFieldInfo> list) 902private void PopulateLiteralFields(Filter filter, RuntimeType declaringType, ref ListBuilder<RuntimeFieldInfo> list) 962ref ListBuilder<RuntimeType> list, 991ListBuilder<RuntimeType> list = default; 1078ListBuilder<RuntimeType> list = default; 1121ListBuilder<RuntimeEventInfo> list = default; 1146Filter filter, RuntimeType declaringType, Dictionary<string, RuntimeEventInfo>? csEventInfos, ref ListBuilder<RuntimeEventInfo> list) 1214ListBuilder<RuntimePropertyInfo> list = default; 1253ref ListBuilder<RuntimePropertyInfo> list) 2498private ListBuilder<MethodInfo> GetMethodCandidates( 2506ListBuilder<MethodInfo> candidates = new ListBuilder<MethodInfo>(cache.Length); 2523private ListBuilder<ConstructorInfo> GetConstructorCandidates( 2531ListBuilder<ConstructorInfo> candidates = new ListBuilder<ConstructorInfo>(cache.Length); 2545private ListBuilder<PropertyInfo> GetPropertyCandidates( 2554ListBuilder<PropertyInfo> candidates = new ListBuilder<PropertyInfo>(cache.Length); 2569private ListBuilder<EventInfo> GetEventCandidates(string? name, BindingFlags bindingAttr, bool allowPrefixLookup) 2577ListBuilder<EventInfo> candidates = new ListBuilder<EventInfo>(cache.Length); 2591private ListBuilder<FieldInfo> GetFieldCandidates(string? name, BindingFlags bindingAttr, bool allowPrefixLookup) 2599ListBuilder<FieldInfo> candidates = new ListBuilder<FieldInfo>(cache.Length); 2613private ListBuilder<Type> GetNestedTypeCandidates(string? fullname, BindingFlags bindingAttr, bool allowPrefixLookup) 2621ListBuilder<Type> candidates = new ListBuilder<Type>(cache.Length); 2682ListBuilder<MethodInfo> methods = GetMethodCandidates(null, GenericParameterCountAny, bindingAttr, CallingConventions.Any, null, false); 2683ListBuilder<ConstructorInfo> constructors = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, null, false); 2684ListBuilder<PropertyInfo> properties = GetPropertyCandidates(null, bindingAttr, null, false); 2685ListBuilder<EventInfo> events = GetEventCandidates(null, bindingAttr, false); 2686ListBuilder<FieldInfo> fields = GetFieldCandidates(null, bindingAttr, false); 2687ListBuilder<Type> nestedTypes = GetNestedTypeCandidates(null, bindingAttr, false); 2797ListBuilder<MethodInfo> candidates = GetMethodCandidates(name, genericParameterCount, bindingAttr, callConv, types, false); 2833ListBuilder<ConstructorInfo> candidates = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, types, false); 2861ListBuilder<PropertyInfo> candidates = GetPropertyCandidates(name, bindingAttr, types, false); 3032ListBuilder<MethodInfo> methods = default; 3033ListBuilder<ConstructorInfo> constructors = default; 3034ListBuilder<PropertyInfo> properties = default; 3035ListBuilder<EventInfo> events = default; 3036ListBuilder<FieldInfo> fields = default; 3037ListBuilder<Type> nestedTypes = default; 3869ListBuilder<ConstructorInfo> candidates = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, null, false);