Lines Matching refs:that

172   parser::by_state::by_state (const by_state& that) YY_NOEXCEPT  in by_state()  argument
173 : state (that.state) in by_state()
183 parser::by_state::move (by_state& that) in move() argument
185 state = that.state; in move()
186 that.clear (); in move()
205 parser::stack_symbol_type::stack_symbol_type (YY_RVREF (stack_symbol_type) that) in stack_symbol_type() argument
206 : super_type (YY_MOVE (that.state), YY_MOVE (that.location)) in stack_symbol_type()
208 switch (that.kind ()) in stack_symbol_type()
215 value.YY_MOVE_OR_COPY< bool > (YY_MOVE (that.value)); in stack_symbol_type()
219 value.YY_MOVE_OR_COPY< enum condition > (YY_MOVE (that.value)); in stack_symbol_type()
223 value.YY_MOVE_OR_COPY< enum fifo_config > (YY_MOVE (that.value)); in stack_symbol_type()
229 value.YY_MOVE_OR_COPY< enum in_out_set > (YY_MOVE (that.value)); in stack_symbol_type()
233 value.YY_MOVE_OR_COPY< enum irq > (YY_MOVE (that.value)); in stack_symbol_type()
237 value.YY_MOVE_OR_COPY< enum mov_op > (YY_MOVE (that.value)); in stack_symbol_type()
242 value.YY_MOVE_OR_COPY< extended_mov > (YY_MOVE (that.value)); in stack_symbol_type()
246 value.YY_MOVE_OR_COPY< float > (YY_MOVE (that.value)); in stack_symbol_type()
250 value.YY_MOVE_OR_COPY< int > (YY_MOVE (that.value)); in stack_symbol_type()
255 value.YY_MOVE_OR_COPY< std::shared_ptr<instruction> > (YY_MOVE (that.value)); in stack_symbol_type()
263 value.YY_MOVE_OR_COPY< std::shared_ptr<resolvable> > (YY_MOVE (that.value)); in stack_symbol_type()
268 value.YY_MOVE_OR_COPY< std::shared_ptr<symbol> > (YY_MOVE (that.value)); in stack_symbol_type()
272 value.YY_MOVE_OR_COPY< std::shared_ptr<wait_source> > (YY_MOVE (that.value)); in stack_symbol_type()
281 value.YY_MOVE_OR_COPY< std::string > (YY_MOVE (that.value)); in stack_symbol_type()
285 value.YY_MOVE_OR_COPY< uint > (YY_MOVE (that.value)); in stack_symbol_type()
294 that.state = empty_state; in stack_symbol_type()
298 parser::stack_symbol_type::stack_symbol_type (state_type s, YY_MOVE_REF (symbol_type) that) in stack_symbol_type() argument
299 : super_type (s, YY_MOVE (that.location)) in stack_symbol_type()
301 switch (that.kind ()) in stack_symbol_type()
308 value.move< bool > (YY_MOVE (that.value)); in stack_symbol_type()
312 value.move< enum condition > (YY_MOVE (that.value)); in stack_symbol_type()
316 value.move< enum fifo_config > (YY_MOVE (that.value)); in stack_symbol_type()
322 value.move< enum in_out_set > (YY_MOVE (that.value)); in stack_symbol_type()
326 value.move< enum irq > (YY_MOVE (that.value)); in stack_symbol_type()
330 value.move< enum mov_op > (YY_MOVE (that.value)); in stack_symbol_type()
335 value.move< extended_mov > (YY_MOVE (that.value)); in stack_symbol_type()
339 value.move< float > (YY_MOVE (that.value)); in stack_symbol_type()
343 value.move< int > (YY_MOVE (that.value)); in stack_symbol_type()
348 value.move< std::shared_ptr<instruction> > (YY_MOVE (that.value)); in stack_symbol_type()
356 value.move< std::shared_ptr<resolvable> > (YY_MOVE (that.value)); in stack_symbol_type()
361 value.move< std::shared_ptr<symbol> > (YY_MOVE (that.value)); in stack_symbol_type()
365 value.move< std::shared_ptr<wait_source> > (YY_MOVE (that.value)); in stack_symbol_type()
374 value.move< std::string > (YY_MOVE (that.value)); in stack_symbol_type()
378 value.move< uint > (YY_MOVE (that.value)); in stack_symbol_type()
386 that.kind_ = symbol_kind::S_YYEMPTY; in stack_symbol_type()
391 parser::stack_symbol_type::operator= (const stack_symbol_type& that) in operator =() argument
393 state = that.state; in operator =()
394 switch (that.kind ()) in operator =()
401 value.copy< bool > (that.value); in operator =()
405 value.copy< enum condition > (that.value); in operator =()
409 value.copy< enum fifo_config > (that.value); in operator =()
415 value.copy< enum in_out_set > (that.value); in operator =()
419 value.copy< enum irq > (that.value); in operator =()
423 value.copy< enum mov_op > (that.value); in operator =()
428 value.copy< extended_mov > (that.value); in operator =()
432 value.copy< float > (that.value); in operator =()
436 value.copy< int > (that.value); in operator =()
441 value.copy< std::shared_ptr<instruction> > (that.value); in operator =()
449 value.copy< std::shared_ptr<resolvable> > (that.value); in operator =()
454 value.copy< std::shared_ptr<symbol> > (that.value); in operator =()
458 value.copy< std::shared_ptr<wait_source> > (that.value); in operator =()
467 value.copy< std::string > (that.value); in operator =()
471 value.copy< uint > (that.value); in operator =()
478 location = that.location; in operator =()
483 parser::stack_symbol_type::operator= (stack_symbol_type& that) in operator =() argument
485 state = that.state; in operator =()
486 switch (that.kind ()) in operator =()
493 value.move< bool > (that.value); in operator =()
497 value.move< enum condition > (that.value); in operator =()
501 value.move< enum fifo_config > (that.value); in operator =()
507 value.move< enum in_out_set > (that.value); in operator =()
511 value.move< enum irq > (that.value); in operator =()
515 value.move< enum mov_op > (that.value); in operator =()
520 value.move< extended_mov > (that.value); in operator =()
524 value.move< float > (that.value); in operator =()
528 value.move< int > (that.value); in operator =()
533 value.move< std::shared_ptr<instruction> > (that.value); in operator =()
541 value.move< std::shared_ptr<resolvable> > (that.value); in operator =()
546 value.move< std::shared_ptr<symbol> > (that.value); in operator =()
550 value.move< std::shared_ptr<wait_source> > (that.value); in operator =()
559 value.move< std::string > (that.value); in operator =()
563 value.move< uint > (that.value); in operator =()
570 location = that.location; in operator =()
572 that.state = empty_state; in operator =()