3 instantiations of IndexedEnumerable
PresentationFramework (3)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
1064IndexedEnumerable newIndexer = new IndexedEnumerable(ProxiedView, new Predicate<object>(this.PassesFilter));
src\Framework\System\Windows\Data\CollectionContainer.cs (1)
318_viewList = new IndexedEnumerable(View);
src\Framework\System\Windows\Data\CollectionView.cs (1)
1767IndexedEnumerable newWrapper = new IndexedEnumerable(SourceCollection, new Predicate<object>(this.PassesFilter));
17 references to IndexedEnumerable
PresentationFramework (17)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (5)
176IndexedEnumerable indexer = (IndexedEnumerable) Interlocked.Exchange(ref _indexer, null); 1058private IndexedEnumerable EnumerableWrapper 1064IndexedEnumerable newIndexer = new IndexedEnumerable(ProxiedView, new Predicate<object>(this.PassesFilter)); 1082IndexedEnumerable _indexer;
src\Framework\MS\Internal\Data\IndexedEnumerable.cs (2)
735public FilteredEnumerator(IndexedEnumerable indexedEnumerable, IEnumerable enumerable, Predicate<object> filterCallback) 792IndexedEnumerable _indexedEnumerable;
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
317IndexedEnumerable.CopyTo(_collectionView, array, index);
src\Framework\System\Windows\Data\CollectionContainer.cs (4)
182IndexedEnumerable le = ViewList as IndexedEnumerable; 312private IndexedEnumerable ViewList 414private IndexedEnumerable _viewList; // cache of list wrapper for view
src\Framework\System\Windows\Data\CollectionView.cs (5)
1452IndexedEnumerable wrapper = (IndexedEnumerable) Interlocked.Exchange(ref _enumerableWrapper, null); 1761private IndexedEnumerable EnumerableWrapper 1767IndexedEnumerable newWrapper = new IndexedEnumerable(SourceCollection, new Predicate<object>(this.PassesFilter)); 2182IndexedEnumerable _enumerableWrapper;