Searched refs:msg (Results 1 – 12 of 12) sorted by relevance
/hal_rpi_pico-latest/tools/pioasm/ |
D | pio_assembler.cpp | 42 std::stringstream msg; in add_instruction() local 43 msg << "program instruction limit of " << limit << " instruction(s) exceeded"; in add_instruction() 44 throw syntax_error(inst->location, msg.str()); in add_instruction() 47 std::stringstream msg; in add_instruction() local 48 …msg << "instruction requires 'side' to specify side set value for the instruction because non opti… in add_instruction() 49 throw syntax_error(inst->location, msg.str()); in add_instruction() 84 std::stringstream msg; in add_symbol() local 86 …msg << "'" << symbol->name << "' was already defined as a " << (existing->is_label ? "label" : "va… in add_symbol() 89 msg << "label '" << symbol->name << "' was already defined at " << existing->location; in add_symbol() 91 msg << "'" << symbol->name << "' was already defined at " << existing->location; in add_symbol() [all …]
|
D | pio_assembler.h | 65 std::stringstream msg; member 66 msg << requiring_program << " is invalid outside of a program"; 67 throw syntax_error(l, msg.str()); 73 std::stringstream msg; member 74 msg << requiring_program << " must precede any program instructions"; 75 throw syntax_error(l, msg.str()); 108 std::stringstream msg; in check_version() local 109 msg << "PIO version " << min_version << " is required for '" << feature << "'"; in check_version() 110 throw syntax_error(l, msg.str()); in check_version()
|
D | ada_output.cpp | 63 void header(FILE *out, const std::string msg, const int indent) { in header() 64 const std::string dashes = std::string(msg.length() + 6, '-'); in header() 67 fprintf(out, "%s-- %s --\n", indent_str.c_str(), msg.c_str()); in header()
|
D | go_output.cpp | 56 void header(FILE *out, std::string msg) { in header() 57 fprintf(out, "// %s\n\n", msg.c_str()); in header()
|
D | c_sdk_output.cpp | 48 void header(FILE *out, std::string msg) { in header() 49 std::string dashes = std::string(msg.length(), '-'); in header() 51 fprintf(out, "// %s //\n", msg.c_str()); in header()
|
D | python_output.cpp | 51 void header(FILE *out, std::string msg) { in header() 52 std::string dashes = std::string(msg.length(), '-'); in header() 54 fprintf(out, "# %s #\n", msg.c_str()); in header()
|
D | parser.yy | 177 …sm.add_program(@$, $2)) { std::stringstream msg; msg << "program " << $2 << " already exists"; err… 221 …ECTIVE { std::stringstream msg; msg << "unknown directive " << $1; throw syntax_er…
|
/hal_rpi_pico-latest/cmake/ |
D | generic_board.cmake | 35 set(msg "Unable to find definition of board '${PICO_BOARD}' (specified by PICO_BOARD):\n") variable 37 …string(CONCAT msg ${msg} " Looked for ${PICO_BOARD}.h in ${DIRS} (additional paths specified by … 39 …string(CONCAT msg ${msg} " Looked for ${PICO_BOARD}.cmake in ${DIRS} (additional paths specified… 40 message(FATAL_ERROR ${msg})
|
/hal_rpi_pico-latest/tools/pioasm/gen/ |
D | lexer.cpp | 402 static void yynoreturn yy_fatal_error ( const char* msg ); 1072 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) argument 2636 static void yynoreturn yy_fatal_error (const char* msg ) in yy_fatal_error() argument 2638 fprintf( stderr, "%s\n", msg ); in yy_fatal_error()
|
D | parser.cpp | 1074 …{ std::stringstream msg; msg << "program " << yystack_[0].value.as < std::string > () << " already… in parse() local 1206 … std::stringstream msg; msg << "unknown directive " << yystack_[0].value.as < std::string > (); th… in parse() local 1766 std::string msg = yysyntax_error_ (yyctx); in parse() local 1767 error (yyla.location, YY_MOVE (msg)); in parse()
|
D | parser.hpp | 1344 virtual void error (const location_type& loc, const std::string& msg);
|
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/ |
D | pio.c | 27 const char *msg = in pio_sm_claim() local 33 hw_claim_or_assert(&claimed[0], which * NUM_PIO_STATE_MACHINES + sm, msg); in pio_sm_claim()
|