Lines Matching refs:StateScope
82 typedef Scope<StateDeclStmtNode> StateScope; typedef
114 void push_state(StateScope *scope) { in push_state()
123 StateScope *old = current_state_scope_; in pop_state()
142 StateScope* enter_state_scope() { in enter_state_scope()
143 current_state_scope_ = new StateScope(current_state_scope_, next_state_id()); in enter_state_scope()
150 StateScope* exit_state_scope() { in exit_state_scope()
159 void set_current(StateScope* s) { current_state_scope_ = s; } in set_current()
160 StateScope* current_state() const { return current_state_scope_; } in current_state()
161 StateScope* top_state() const { return top_state_scope_; } in top_state()
177 StateScope* current_state_scope_;
178 StateScope* top_state_scope_;