Searched refs:begin (Results 1 – 9 of 9) sorted by relevance
/hal_rpi_pico-latest/tools/pioasm/gen/ |
D | location.h | 174 : begin (b) in location() 180 : begin (p) in begin() function 188 : begin (f, l, c) in begin() function 198 begin.initialize (f, l, c); 199 end = begin; 208 begin = end; in step() 227 position begin; 288 ostr << loc.begin; 290 && (!loc.begin.filename 291 || *loc.begin.filename != *loc.end.filename)) [all …]
|
D | parser.cpp | 85 (Current).begin = YYRHSLOC (Rhs, 1).begin; \ 90 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \ 2518 i = yystack_.begin (), in yy_stack_print_() 2546 if (l.begin.filename) { in error() 2549 if (l.begin.line == l.end.line && *l.begin.filename == *l.end.filename) { in error() 2550 std::ifstream file(l.begin.filename->c_str()); in error() 2552 for(int i = 0; i < l.begin.line; ++i) { in error() 2555 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str()); in error() 2556 fprintf(stderr, "%5s | %*s", "", l.begin.column, "^"); in error() 2557 for (int i = l.begin.column; i < l.end.column - 1; i++) { in error()
|
D | lexer.cpp | 1255 { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); loc.step(); retur… 1278 { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); loc.step(); } 1282 { BEGIN(INITIAL); auto loc2 = loc; loc2.begin = code_block_start.begin; return yy::parser::make_COD… 1308 { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); loc.step(); } 1342 { BEGIN(INITIAL); auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); l…
|
D | parser.hpp | 3093 begin () const YY_NOEXCEPT in begin() function in yy::parser::stack 3095 return seq_.begin (); in begin()
|
/hal_rpi_pico-latest/tools/pioasm/ |
D | pio_assembler.cpp | 441 std::remove_copy_if(program.ordered_symbols.begin(), program.ordered_symbols.end(), in public_symbols() 446 std::transform(public_symbols.begin(), public_symbols.end(), std::back_inserter(rc), in public_symbols() 455 std::transform(output_format::all().begin(), output_format::all().end(), in write_output() 456 std::inserter(known_output_formats, known_output_formats.begin()), in write_output() 470 std::transform(program.instructions.begin(), program.instructions.end(), in write_output() 521 …nsform(program.code_blocks.begin(), program.code_blocks.end(), std::inserter(cprogram.code_blocks,… in write_output() 523 …std::transform(e.second.begin(), e.second.end(), std::back_inserter(blocks), [&](const code_block&… in write_output()
|
D | lexer.ll | 67 \n+ { auto loc_newline = loc; loc_newline.end = loc_newline.begin; … 81 …\n+ { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc… 82 …* { BEGIN(INITIAL); auto loc2 = loc; loc2.begin = code_block_start.begin; retur… 91 …\n+ { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc… 102 … { BEGIN(INITIAL); auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng)…
|
D | parser.yy | 427 if (l.begin.filename) { 430 if (l.begin.line == l.end.line && *l.begin.filename == *l.end.filename) { 431 std::ifstream file(l.begin.filename->c_str()); 433 for(int i = 0; i < l.begin.line; ++i) { 436 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str()); 437 fprintf(stderr, "%5s | %*s", "", l.begin.column, "^"); 438 for (int i = l.begin.column; i < l.end.column - 1; i++) {
|
D | main.cpp | 95 const auto& e = std::find_if(output_format::all().begin(), output_format::all().end(), in main()
|
D | pio_assembler.h | 43 …if (std::find_if(programs.begin(), programs.end(), [&](const program &p) { return p.name == name; … in add_program()
|