Lines Matching refs:t

219     semantic_type (YY_RVREF (T) t)  in semantic_type()  argument
222 new (yyas_<T> ()) T (YY_MOVE (t)); in semantic_type()
256 emplace (const T& t) in emplace() argument
258 return *new (yyas_<T> ()) T (t); in emplace()
275 build (const T& t) in build() argument
277 return emplace<T> (t); in build()
862 basic_symbol (typename Base::kind_type t, location_type&& l) in basic_symbol()
863 : Base (t) in basic_symbol()
867 basic_symbol (typename Base::kind_type t, const location_type& l) in basic_symbol()
868 : Base (t) in basic_symbol()
873 basic_symbol (typename Base::kind_type t, bool&& v, location_type&& l) in basic_symbol()
874 : Base (t) in basic_symbol()
879 basic_symbol (typename Base::kind_type t, const bool& v, const location_type& l) in basic_symbol()
880 : Base (t) in basic_symbol()
886 basic_symbol (typename Base::kind_type t, enum condition&& v, location_type&& l) in basic_symbol()
887 : Base (t) in basic_symbol()
892 basic_symbol (typename Base::kind_type t, const enum condition& v, const location_type& l) in basic_symbol()
893 : Base (t) in basic_symbol()
899 basic_symbol (typename Base::kind_type t, enum fifo_config&& v, location_type&& l) in basic_symbol()
900 : Base (t) in basic_symbol()
905 basic_symbol (typename Base::kind_type t, const enum fifo_config& v, const location_type& l) in basic_symbol()
906 : Base (t) in basic_symbol()
912 basic_symbol (typename Base::kind_type t, enum in_out_set&& v, location_type&& l) in basic_symbol()
913 : Base (t) in basic_symbol()
918 basic_symbol (typename Base::kind_type t, const enum in_out_set& v, const location_type& l) in basic_symbol()
919 : Base (t) in basic_symbol()
925 basic_symbol (typename Base::kind_type t, enum irq&& v, location_type&& l) in basic_symbol()
926 : Base (t) in basic_symbol()
931 basic_symbol (typename Base::kind_type t, const enum irq& v, const location_type& l) in basic_symbol()
932 : Base (t) in basic_symbol()
938 basic_symbol (typename Base::kind_type t, enum mov_op&& v, location_type&& l) in basic_symbol()
939 : Base (t) in basic_symbol()
944 basic_symbol (typename Base::kind_type t, const enum mov_op& v, const location_type& l) in basic_symbol()
945 : Base (t) in basic_symbol()
951 basic_symbol (typename Base::kind_type t, extended_mov&& v, location_type&& l) in basic_symbol()
952 : Base (t) in basic_symbol()
957 basic_symbol (typename Base::kind_type t, const extended_mov& v, const location_type& l) in basic_symbol()
958 : Base (t) in basic_symbol()
964 basic_symbol (typename Base::kind_type t, float&& v, location_type&& l) in basic_symbol()
965 : Base (t) in basic_symbol()
970 basic_symbol (typename Base::kind_type t, const float& v, const location_type& l) in basic_symbol()
971 : Base (t) in basic_symbol()
977 basic_symbol (typename Base::kind_type t, int&& v, location_type&& l) in basic_symbol()
978 : Base (t) in basic_symbol()
983 basic_symbol (typename Base::kind_type t, const int& v, const location_type& l) in basic_symbol()
984 : Base (t) in basic_symbol()
990 basic_symbol (typename Base::kind_type t, std::shared_ptr<instruction>&& v, location_type&& l) in basic_symbol()
991 : Base (t) in basic_symbol()
996 …basic_symbol (typename Base::kind_type t, const std::shared_ptr<instruction>& v, const location_ty… in basic_symbol()
997 : Base (t) in basic_symbol()
1003 basic_symbol (typename Base::kind_type t, std::shared_ptr<resolvable>&& v, location_type&& l) in basic_symbol()
1004 : Base (t) in basic_symbol()
1009 …basic_symbol (typename Base::kind_type t, const std::shared_ptr<resolvable>& v, const location_typ… in basic_symbol()
1010 : Base (t) in basic_symbol()
1016 basic_symbol (typename Base::kind_type t, std::shared_ptr<symbol>&& v, location_type&& l) in basic_symbol()
1017 : Base (t) in basic_symbol()
1022 …basic_symbol (typename Base::kind_type t, const std::shared_ptr<symbol>& v, const location_type& l) in basic_symbol()
1023 : Base (t) in basic_symbol()
1029 basic_symbol (typename Base::kind_type t, std::shared_ptr<wait_source>&& v, location_type&& l) in basic_symbol()
1030 : Base (t) in basic_symbol()
1035 …basic_symbol (typename Base::kind_type t, const std::shared_ptr<wait_source>& v, const location_ty… in basic_symbol()
1036 : Base (t) in basic_symbol()
1042 basic_symbol (typename Base::kind_type t, std::string&& v, location_type&& l) in basic_symbol()
1043 : Base (t) in basic_symbol()
1048 basic_symbol (typename Base::kind_type t, const std::string& v, const location_type& l) in basic_symbol()
1049 : Base (t) in basic_symbol()
1055 basic_symbol (typename Base::kind_type t, uint&& v, location_type&& l) in basic_symbol()
1056 : Base (t) in basic_symbol()
1061 basic_symbol (typename Base::kind_type t, const uint& v, const location_type& l) in basic_symbol()
1062 : Base (t) in basic_symbol()
1221 by_kind (kind_type t);
2892 static symbol_kind_type yytranslate_ (int t);
3063 push (YY_MOVE_REF (T) t) in push() argument
3066 operator[] (0).move (t); in push()
3186 parser::yytranslate_ (int t) in yytranslate_() argument
3234 if (t <= 0) in yytranslate_()
3236 else if (t <= code_max) in yytranslate_()
3237 return YY_CAST (symbol_kind_type, translate_table[t]); in yytranslate_()
3464 parser::by_kind::by_kind (token_kind_type t) in by_kind() argument
3465 : kind_ (yytranslate_ (t)) in by_kind()