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