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