18 references to RemoveAll
mscorlib (4)
system\diagnostics\eventing\eventsource.cs (2)
5816s_etwSessions.RemoveAll((wrEtwSession) => 5837s_etwSessions.RemoveAll((wrEtwSession) =>
system\threading\Tasks\Task.cs (2)
2259exceptionalChildren.RemoveAll(s_IsExceptionObservedByParentPredicate); // RemoveAll has better performance than doing it ourselves 4772list.RemoveAll(s_IsTaskContinuationNullPredicate);
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\StateContainerEditor.CompositeView.cs (2)
69itemsToCopy.RemoveAll(item => item.ItemType == typeof(Transition)); 109itemsToDelete.RemoveAll(item => item.ItemType == typeof(Transition));
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\CutCopyPasteHelper.cs (2)
200modelItemsToCut.RemoveAll((modelItem) => { return modelItem == null; }); 257modelItemsToCopy.RemoveAll((modelItem) => { return modelItem == null; });
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\CutCopyPasteHelper.cs (2)
200modelItemsToCut.RemoveAll((modelItem) => { return modelItem == null; }); 257modelItemsToCopy.RemoveAll((modelItem) => { return modelItem == null; });
System.Data.Entity (4)
System\Data\Query\PlanCompiler\ProjectionPruner.cs (2)
330op.Outputs.RemoveAll(IsUnreferenced); 544varDefListNode.Children.RemoveAll(c => constantKeys.Contains(c) && constantKeyVars.IsSet(((VarDefOp)c.Op).Var));
System\Data\SqlClient\SqlProviderManifest.cs (2)
179primitiveTypes.RemoveAll(new Predicate<PrimitiveType>( 196primitiveTypes.RemoveAll(new Predicate<PrimitiveType>(
System.ServiceModel (2)
System\ServiceModel\Configuration\ServiceModelExtensionCollectionElement.cs (2)
416parentExtensionElements.RemoveAll(element => element != null && element.ConfigurationElementName == childExtensionElementName); 422parentExtensionElements.RemoveAll(element => element != null && element.GetType() == childExtensionElementType);
System.Web.DynamicData (1)
DynamicData\ModelProviders\DLinqTableProvider.cs (1)
68_columns.RemoveAll(c => ((DLinqColumnProvider)c).ShouldRemove);
System.Workflow.Activities (1)
StateMachineSubscriptionManager.cs (1)
376this.EventQueue.RemoveAll(delegate(StateMachineSubscription subscription) { return subscription.SubscriptionId.Equals(subscriptionId); });