Home
last modified time | relevance | path

Searched refs:last_line (Results 1 – 25 of 54) sorted by relevance

123

/external/dtc/
Dsrcpos.h74 int last_line; member
86 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
90 (Current).first_line = (Current).last_line = \
91 YYRHSLOC(Rhs, 0).last_line; \
Dsrcpos.c207 .last_line = 0,
234 pos->last_line = current_srcfile->lineno; in srcpos_update()
259 if (pos->first_line != pos->last_line) in srcpos_string()
262 pos->last_line, pos->last_column); in srcpos_string()
/external/u-boot/scripts/dtc/
Dsrcpos.h74 int last_line; member
86 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
90 (Current).first_line = (Current).last_line = \
91 YYRHSLOC(Rhs, 0).last_line; \
Dsrcpos.c207 .last_line = 0,
229 pos->last_line = current_srcfile->lineno; in srcpos_update()
254 if (pos->first_line != pos->last_line) in srcpos_string()
257 pos->last_line, pos->last_column); in srcpos_string()
/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp.h77 int last_line; member
90 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
95 (Current).first_line = (Current).last_line = \
96 YYRHSLOC(Rhs, 0).last_line; \
/external/blktrace/
Dverify_blkparse.c11 char line[256], last_line[256], *p; in main() local
55 fprintf(stdout, "last: %s", last_line); in main()
74 strcpy(last_line, line); in main()
/external/google-breakpad/src/common/
Dstabs_to_module.cc183 vector<Module::Line>::iterator last_line = f->lines.end() - 1; in Finalize() local
185 line_it != last_line; line_it++) in Finalize()
188 last_line->size = (f->address + f->size) - last_line->address; in Finalize()
/external/python/cpython2/Lib/
Dtokenize.py309 last_line = b''
317 last_line = line
448 if last_line and last_line[-1] not in '\r\n':
449 yield (NEWLINE, '', (lnum - 1, len(last_line)), (lnum - 1, len(last_line) + 1), '')
/external/mesa3d/src/compiler/glsl/
Dglsl_parser_extras.h63 int last_line; member
879 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
884 (Current).first_line = (Current).last_line = \
885 YYRHSLOC(Rhs, 0).last_line; \
Dast.h82 locp.last_line = this->location.last_line; in get_location()
98 this->location.last_line = locp.last_line; in set_location()
111 this->location.last_line = end.last_line; in set_location_range()
123 unsigned last_line; /**< Last line number within the source string. */ member
/external/iproute2/tc/
Demp_ematch.yacc.c151 int last_line; member
623 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
628 (Current).first_line = (Current).last_line = \
629 YYRHSLOC (Rhs, 0).last_line; \
675 if (0 <= yylocp->last_line) in yy_location_print_()
677 if (yylocp->first_line < yylocp->last_line) in yy_location_print_()
679 res += YYFPRINTF (yyo, "-%d", yylocp->last_line); in yy_location_print_()
Demp_ematch.yacc.h82 int last_line; member
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_context.c334 const unsigned last_line = pane->last_line; in hud_pane_accumulate_vertices() local
342 for (i = 0; i <= last_line; i++) { in hud_pane_accumulate_vertices()
345 pane->inner_height * (last_line - i) / last_line - in hud_pane_accumulate_vertices()
348 number_to_human_readable(pane->max_value * i / last_line, in hud_pane_accumulate_vertices()
387 for (i = 0; i <= last_line; i++) { in hud_pane_accumulate_vertices()
388 float y = round((pane->max_value * i / (double)last_line) * in hud_pane_accumulate_vertices()
774 pane->last_line = 5; /* lines in +1/5 increments */ in hud_pane_set_max_value()
777 pane->last_line = 8; /* lines in +1/4 increments. */ in hud_pane_set_max_value()
781 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */ in hud_pane_set_max_value()
787 pane->last_line = leftmost_digit; /* lines in +1 increments */ in hud_pane_set_max_value()
[all …]
/external/autotest/server/
Dautotest.py809 def is_client_job_finished(last_line): argument
810 return bool(re.match(r'^\t*END .*\t[\w.-]+\t[\w.-]+\t.*$', last_line))
814 def is_client_job_rebooting(last_line): argument
815 return bool(re.match(r'^\t*GOOD\t[\w.-]+\treboot\.start.*$', last_line))
984 last_line = stderr_redirector.last_line
997 if err and not self.is_client_job_finished(last_line):
1003 return stderr_redirector.last_line
1205 self.last_line = ""
1233 self.last_line = log_list[-1].render()
1248 self.last_line = line
/external/python/cpython3/Lib/
Dtokenize.py499 last_line = b''
507 last_line = line
663 if last_line and last_line[-1] not in '\r\n':
664 yield TokenInfo(NEWLINE, '', (lnum - 1, len(last_line)), (lnum - 1, len(last_line) + 1), '')
Dtraceback.py399 last_line = None
404 last_line is None or last_line != frame.lineno or
413 last_line = frame.lineno
/external/python/cpython2/Python/
Dpeephole.c308 int new_line, cum_orig_line, last_line, tabsiz; in PyCode_Optimize() local
606 last_line = 0; in PyCode_Optimize()
610 assert (new_line - last_line < 255); in PyCode_Optimize()
611 lineno[i] =((unsigned char)(new_line - last_line)); in PyCode_Optimize()
612 last_line = new_line; in PyCode_Optimize()
/external/autotest/server/site_tests/tast/
Dtast.py270 last_line = (get_last_line(e.result_obj.stdout) or
272 msg = (' (last line: %s)' % last_line) if last_line else ''
/external/fonttools/
Dsetup.py279 last_line = out.getvalue().splitlines()[-1]
280 new_version = last_line.replace("new_version=", "")
/external/autotest/client/cros/crash/
Dcrash_test.py360 last_line = ''
362 last_line = 'done=1\n'
367 last_line))
/external/python/cpython3/Python/
Dtraceback.c540 int last_line = -1; in tb_printinternal() local
555 last_line == -1 || tb->tb_lineno != last_line || in tb_printinternal()
561 last_line = tb->tb_lineno; in tb_printinternal()
/external/swiftshader/src/OpenGL/compiler/
DDiagnostics.cpp70 sourceLoc.first_line = sourceLoc.last_line = loc.line; in writeInfo()
Dglslang_tab.cpp324 int last_line; member
349 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
353 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
355 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
1639 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
1644 (Current).first_line = (Current).last_line = \
1645 YYRHSLOC (Rhs, 0).last_line; \
1691 if (0 <= yylocp->last_line) in yy_location_print_()
1693 if (yylocp->first_line < yylocp->last_line) in yy_location_print_()
1695 res += YYFPRINTF (yyo, "-%d", yylocp->last_line); in yy_location_print_()
/external/flatbuffers/src/
Dcode_generators.cpp157 if (config != nullptr && config->last_line != nullptr) { in GenComment()
158 code += std::string(prefix) + std::string(config->last_line) + "\n"; in GenComment()
/external/mesa3d/src/mesa/program/
Dprogram_parser.h234 int last_line; member

123