19 instantiations of ListBuilder
mscorlib (19)
40 references to ListBuilder
mscorlib (40)
system\rttype.cs (40)
625ListBuilder<RuntimeMethodInfo> list = new ListBuilder<RuntimeMethodInfo>();
804ListBuilder<RuntimeConstructorInfo> list = new ListBuilder<RuntimeConstructorInfo>();
856ListBuilder<RuntimeFieldInfo> list = new ListBuilder<RuntimeFieldInfo>();
906private unsafe void PopulateRtFields(Filter filter, RuntimeType declaringType, ref ListBuilder<RuntimeFieldInfo> list)
927IntPtr* ppFieldHandles, int count, RuntimeType declaringType, ref ListBuilder<RuntimeFieldInfo> list)
980private unsafe void PopulateLiteralFields(Filter filter, RuntimeType declaringType, ref ListBuilder<RuntimeFieldInfo> list)
1063private void AddSpecialInterface(ref ListBuilder<RuntimeType> list, Filter filter, RuntimeType iList, bool addSubInterface)
1087ListBuilder<RuntimeType> list = new ListBuilder<RuntimeType>();
1190ListBuilder<RuntimeType> list = new ListBuilder<RuntimeType>();
1235ListBuilder<RuntimeEventInfo> list = new ListBuilder<RuntimeEventInfo>();
1260Filter filter, RuntimeType declaringType, Dictionary<String, RuntimeEventInfo> csEventInfos, ref ListBuilder<RuntimeEventInfo> list)
1330ListBuilder<RuntimePropertyInfo> list = new ListBuilder<RuntimePropertyInfo>();
1366ref ListBuilder<RuntimePropertyInfo> list)
2803private ListBuilder<MethodInfo> GetMethodCandidates(
2813ListBuilder<MethodInfo> candidates = new ListBuilder<MethodInfo>(cache.Length);
2827private ListBuilder<ConstructorInfo> GetConstructorCandidates(
2837ListBuilder<ConstructorInfo> candidates = new ListBuilder<ConstructorInfo>(cache.Length);
2852private ListBuilder<PropertyInfo> GetPropertyCandidates(
2869ListBuilder<PropertyInfo> candidates = new ListBuilder<PropertyInfo>(cache.Length);
2968private ListBuilder<EventInfo> GetEventCandidates(String name, BindingFlags bindingAttr, bool allowPrefixLookup)
2978ListBuilder<EventInfo> candidates = new ListBuilder<EventInfo>(cache.Length);
2992private ListBuilder<FieldInfo> GetFieldCandidates(String name, BindingFlags bindingAttr, bool allowPrefixLookup)
3002ListBuilder<FieldInfo> candidates = new ListBuilder<FieldInfo>(cache.Length);
3016private ListBuilder<Type> GetNestedTypeCandidates(String fullname, BindingFlags bindingAttr, bool allowPrefixLookup)
3027ListBuilder<Type> candidates = new ListBuilder<Type>(cache.Length);
3120ListBuilder<MethodInfo> methods = GetMethodCandidates(null, bindingAttr, CallingConventions.Any, null, false);
3121ListBuilder<ConstructorInfo> constructors = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, null, false);
3122ListBuilder<PropertyInfo> properties = GetPropertyCandidates(null, bindingAttr, null, false);
3123ListBuilder<EventInfo> events = GetEventCandidates(null, bindingAttr, false);
3124ListBuilder<FieldInfo> fields = GetFieldCandidates(null, bindingAttr, false);
3125ListBuilder<Type> nestedTypes = GetNestedTypeCandidates(null, bindingAttr, false);
3214ListBuilder<MethodInfo> candidates = GetMethodCandidates(name, bindingAttr, callConv, types, false);
3254ListBuilder<ConstructorInfo> candidates = GetConstructorCandidates(null, bindingAttr, CallingConventions.Any, types, false);
3286ListBuilder<PropertyInfo> candidates = GetPropertyCandidates(name, bindingAttr, types, false);
3462ListBuilder<MethodInfo> methods = new ListBuilder<MethodInfo>();
3463ListBuilder<ConstructorInfo> constructors = new ListBuilder<ConstructorInfo>();
3464ListBuilder<PropertyInfo> properties = new ListBuilder<PropertyInfo>();
3465ListBuilder<EventInfo> events = new ListBuilder<EventInfo>();
3466ListBuilder<FieldInfo> fields = new ListBuilder<FieldInfo>();
3467ListBuilder<Type> nestedTypes = new ListBuilder<Type>();