Lines Matching full:stack
3 /* Stack handling for Bison parsers in C++
34 ** \file ../../../../examples/calc++/stack.hh
35 ** Define the yy::stack class.
45 /* Line 34 of stack.hh */
46 #line 47 "../../../../examples/calc++/stack.hh"
48 class stack
55 stack () : seq_ ()
59 stack (unsigned int n) : seq_ (n)
106 /// Present a slice of the top of a stack.
107 template <class T, class S = stack<T> >
111 slice (const S& stack, unsigned int range)
112 : stack_ (stack)
130 /* Line 116 of stack.hh */
131 #line 132 "../../../../examples/calc++/stack.hh"