27 references to Stack
PresentationBuildTasks (1)
Framework\System\Windows\Markup\StyleModeStack.cs (1)
68private Stack<StyleMode> _stack = new Stack<StyleMode>(64);
PresentationCore (8)
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (1)
2713Stack<TextModifier> directionalEmbeddingStack = new Stack<TextModifier>(32);
Core\CSharp\System\Windows\EventRoute.cs (1)
435_branchNodeStack = new Stack<BranchNode>(1);
Core\CSharp\System\Windows\Media\Animation\Subtree.cs (1)
305_timelineStack = new Stack<Timeline>(10);
Core\CSharp\System\Windows\Media\BoundsDrawingContextWalker.cs (3)
360_clipStack = new Stack<Rect>(2); 414_transformStack = new Stack<Matrix>(2); 629_pushTypeStack = new Stack<PushType>(2);
Core\CSharp\System\Windows\Media\DrawingDrawingContext.cs (1)
1402_previousDrawingGroupStack = new Stack<DrawingGroup>(2);
Core\CSharp\System\Windows\Media\HitTestWithPointDrawingContextWalker.cs (1)
332_pointStack = new Stack<Point>(2);
PresentationFramework (5)
src\Framework\MS\Internal\Ink\EditingCoordinator.cs (1)
66_activationStack = new Stack<EditingBehavior>(2);
src\Framework\System\Windows\Documents\TextRangeBase.cs (2)
815listItemCounter = new Stack<int>(1); 846listItemCounter = new Stack<int>(1);
src\Framework\System\Windows\Markup\StyleModeStack.cs (1)
68private Stack<StyleMode> _stack = new Stack<StyleMode>(64);
src\Framework\System\Windows\TreeChangeInfo.cs (1)
210_inheritablePropertiesStack = new Stack<FrugalObjectList<DependencyProperty>>(1);
System (7)
compmod\system\collections\generic\sortedset.cs (7)
131Stack<Node> theirStack = new Stack<SortedSet<T>.Node>(2 * log2(baseSortedSet.Count) + 2); 132Stack<Node> myStack = new Stack<SortedSet<T>.Node>(2 * log2(baseSortedSet.Count) + 2); 235Stack<Node> stack = new Stack<Node>(2 * (int)(SortedSet<T>.log2(Count + 1))); 1857Stack<Node> stack = new Stack<Node>(2 * (int)SortedSet<T>.log2(count + 1)); //this is not exactly right if count is out of date, but the stack can grow 2178stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.Count + 1)); 2195stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.Count + 1)); 2244stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(tree.Count + 1));
System.Data.SqlXml (2)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (1)
1402this.stkNames = new Stack<string>(15);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
150this.stkOutput = new Stack<XmlQueryOutput>(16);
System.Runtime.DurableInstancing (1)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (1)
1100this.executionStack = new Stack<IEnumerator<InstancePersistenceCommand>>(2);
System.ServiceModel.Internals (1)
System\Runtime\InternalBufferManager.cs (1)
494this.items = new Stack<byte[]>(limit);
System.Web (1)
AspNetSynchronizationContext.cs (1)
176internal Stack<IDisposable> SyncControlDisassociationActions = new Stack<IDisposable>(capacity: 1);
WindowsBase (1)
Base\MS\Internal\PriorityQueue.cs (1)
13_cacheReusableChains = new Stack<PriorityChain<T>>(10);