Home
last modified time | relevance | path

Searched refs:begin (Results 1 – 9 of 9) sorted by relevance

/hal_rpi_pico-3.4.0/tools/pioasm/gen/
Dlocation.h174 : 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 …]
Dparser.cpp85 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
90 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
1143 …{ std::stringstream msg; location l; l.begin = yystack_[2].location.end; l.end = yystack_[1].locat… in parse()
2160 i = yystack_.begin (), in yy_stack_print_()
2188 if (l.begin.filename) { in error()
2191 if (l.begin.line == l.end.line && *l.begin.filename == *l.end.filename) { in error()
2192 std::ifstream file(l.begin.filename->c_str()); in error()
2194 for(int i = 0; i < l.begin.line; ++i) { in error()
2197 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str()); in error()
2198 fprintf(stderr, "%5s | %*s", "", l.begin.column, "^"); in error()
[all …]
Dlexer.cpp1165 { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); loc.step(); retur…
1188 { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); loc.step(); }
1192 { BEGIN(INITIAL); auto loc2 = loc; loc2.begin = code_block_start.begin; return yy::parser::make_COD…
1218 { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); loc.step(); }
1252 { BEGIN(INITIAL); auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng); l…
Dparser.hpp2518 begin () const YY_NOEXCEPT in begin() function in yy::parser::stack
2520 return seq_.begin (); in begin()
/hal_rpi_pico-3.4.0/tools/pioasm/
Dpio_assembler.cpp312 std::remove_copy_if(program.ordered_symbols.begin(), program.ordered_symbols.end(), in public_symbols()
317 std::transform(public_symbols.begin(), public_symbols.end(), std::back_inserter(rc), in public_symbols()
326 std::transform(output_format::all().begin(), output_format::all().end(), in write_output()
327 std::inserter(known_output_formats, known_output_formats.begin()), in write_output()
341 std::transform(program.instructions.begin(), program.instructions.end(), in write_output()
368 …nsform(program.code_blocks.begin(), program.code_blocks.end(), std::inserter(cprogram.code_blocks,… in write_output()
370 …std::transform(e.second.begin(), e.second.end(), std::back_inserter(blocks), [&](const code_block&… in write_output()
Dparser.yy210 …value { std::stringstream msg; location l; l.begin = @2.end; l.end = …
333 if (l.begin.filename) {
336 if (l.begin.line == l.end.line && *l.begin.filename == *l.end.filename) {
337 std::ifstream file(l.begin.filename->c_str());
339 for(int i = 0; i < l.begin.line; ++i) {
342 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str());
343 fprintf(stderr, "%5s | %*s", "", l.begin.column, "^");
344 for (int i = l.begin.column; i < l.end.column - 1; i++) {
Dlexer.ll65 \n+ { auto loc_newline = loc; loc_newline.end = loc_newline.begin; …
79 …\n+ { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc…
80 …* { BEGIN(INITIAL); auto loc2 = loc; loc2.begin = code_block_start.begin; retur…
89 …\n+ { auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc…
100 … { BEGIN(INITIAL); auto loc_newline = loc; loc_newline.end = loc_newline.begin; loc.lines(yyleng)…
Dmain.cpp82 const auto& e = std::find_if(output_format::all().begin(), output_format::all().end(), in main()
Dpio_assembler.h42 …if (std::find_if(programs.begin(), programs.end(), [&](const program &p) { return p.name == name; … in add_program()