27 references to Stack
PresentationBuildTasks (1)
Framework\System\Windows\Markup\StyleModeStack.cs (1)
68
private Stack<StyleMode> _stack = new
Stack
<StyleMode>(64);
PresentationCore (8)
Core\CSharp\MS\Internal\TextFormatting\TextStore.cs (1)
2713
Stack<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)
815
listItemCounter = new
Stack
<int>(1);
846
listItemCounter = new
Stack
<int>(1);
src\Framework\System\Windows\Markup\StyleModeStack.cs (1)
68
private 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)
131
Stack<Node> theirStack = new
Stack
<SortedSet<T>.Node>(2 * log2(baseSortedSet.Count) + 2);
132
Stack<Node> myStack = new
Stack
<SortedSet<T>.Node>(2 * log2(baseSortedSet.Count) + 2);
235
Stack<Node> stack = new
Stack
<Node>(2 * (int)(SortedSet<T>.log2(Count + 1)));
1857
Stack<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
2178
stack = new
Stack
<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.Count + 1));
2195
stack = new
Stack
<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.Count + 1));
2244
stack = new
Stack
<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(tree.Count + 1));
System.Data.SqlXml (2)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (1)
1402
this.stkNames = new
Stack
<string>(15);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
150
this.stkOutput = new
Stack
<XmlQueryOutput>(16);
System.Runtime.DurableInstancing (1)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (1)
1100
this.executionStack = new
Stack
<IEnumerator<InstancePersistenceCommand>>(2);
System.ServiceModel.Internals (1)
System\Runtime\InternalBufferManager.cs (1)
494
this.items = new
Stack
<byte[]>(limit);
System.Web (1)
AspNetSynchronizationContext.cs (1)
176
internal Stack<IDisposable> SyncControlDisassociationActions = new
Stack
<IDisposable>(capacity: 1);
WindowsBase (1)
Base\MS\Internal\PriorityQueue.cs (1)
13
_cacheReusableChains = new
Stack
<PriorityChain<T>>(10);