Lines Matching refs:stack
48 #include "stack.hh"
183 /// State stack type.
184 typedef stack<state_type> state_stack_type;
185 /// Semantic value stack type.
186 typedef stack<semantic_type> semantic_stack_type;
187 /// location stack type.
188 typedef stack<location_type> location_stack_type;
190 /// The state stack.
192 /// The semantic value stack.
194 /// The location stack.
253 /// Print the state stack on the debug stream.
657 `$$ = $1'. Otherwise, use the top of the stack.
997 // Print the state stack on the debug stream.
1001 *yycdebug_ << "Stack now";
1015 *yycdebug_ << "Reducing stack by rule " << yyrule - 1
1058 @output b4_dir_prefix[]stack.hh
1059 b4_copyright([Stack handling for Bison parsers in C++],
1070 class stack
1078 stack () : seq_ ()
1082 stack (unsigned int n) : seq_ (n)
1130 /// Present a slice of the top of a stack.
1131 template <class T, class S = stack<T> >
1136 slice (const S& stack,
1137 unsigned int range) : stack_ (stack),