Lines Matching refs:string
12 # include <string>
25 yy::parser::symbol_type make_INT(const std::string &s, const yy::parser::location_type& loc);
26 yy::parser::symbol_type make_FLOAT(const std::string &s, const yy::parser::location_type& loc);
27 yy::parser::symbol_type make_HEX(const std::string &s, const yy::parser::location_type& loc);
28 yy::parser::symbol_type make_BINARY(const std::string &s, const yy::parser::location_type& loc);
57 std::string code_block_contents;
73 std::string tmp(yytext);
83 .* { code_block_contents += std::string(yytext) + "\n"; }
103 … { throw yy::parser::syntax_error(loc, "invalid character: " + std::string(yytext)); }
223 … { throw yy::parser::syntax_error(loc, "invalid character: " + std::string(yytext)); }
227 yy::parser::symbol_type make_INT(const std::string &s, const yy::parser::location_type& loc)
236 yy::parser::symbol_type make_FLOAT(const std::string &s, const yy::parser::location_type& loc)
243 yy::parser::symbol_type make_HEX(const std::string &s, const yy::parser::location_type& loc)
252 yy::parser::symbol_type make_BINARY(const std::string &s, const yy::parser::location_type& loc)