Home
last modified time | relevance | path

Searched refs:this_line (Results 1 – 6 of 6) sorted by relevance

/freebsd/usr.bin/col/
H A Dcol.c122 int this_line; /* line l points to */ in main() local
170 cur_line = max_line = nflushd_lines = this_line = 0; in main()
243 if (cur_line + adjust != this_line) { in main()
249 if (cur_line + adjust < this_line) { in main()
250 while (cur_line + adjust < this_line && in main()
253 this_line--; in main()
255 if (cur_line + adjust < this_line) { in main()
263 < this_line) { in main()
269 this_line--; in main()
274 cur_line = this_line - adjust; in main()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp356 SourceLine this_line; in PrintInstructions() local
357 this_line.file = sc.line_entry.GetFile(); in PrintInstructions()
358 this_line.line = sc.line_entry.line; in PrintInstructions()
359 this_line.column = sc.line_entry.column; in PrintInstructions()
360 if (!ElideMixedSourceAndDisassemblyLine(exe_ctx, sc, this_line)) in PrintInstructions()
361 AddLineToSourceLineTables(this_line, source_lines_seen); in PrintInstructions()
417 SourceLine this_line; in PrintInstructions() local
418 this_line.file = func_decl_file; in PrintInstructions()
419 this_line.line = lineno; in PrintInstructions()
420 source_lines_to_display.lines.push_back(this_line); in PrintInstructions()
[all …]
/freebsd/usr.bin/patch/
H A Dpch.c268 off_t this_line = 0, previous_line; in intuit_diff_type() local
283 previous_line = this_line; in intuit_diff_type()
286 this_line = ftello(pfp); in intuit_diff_type()
297 p_start = this_line; in intuit_diff_type()
314 first_command_line = this_line; in intuit_diff_type()
373 p_start = this_line; in intuit_diff_type()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2863 llvm::StringRef this_line = help_text.substr(0, line_width_max); in OutputFormattedHelpText() local
2866 std::size_t first_newline = this_line.find_first_of("\n"); in OutputFormattedHelpText()
2870 if (this_line.size() != help_text.size()) in OutputFormattedHelpText()
2871 last_space = this_line.find_last_of(" \t"); in OutputFormattedHelpText()
2874 this_line = this_line.substr(0, std::min(first_newline, last_space)); in OutputFormattedHelpText()
2875 strm.PutCString(this_line); in OutputFormattedHelpText()
2879 help_text = help_text.drop_front(this_line.size()).ltrim(); in OutputFormattedHelpText()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolContext.cpp728 LineEntry this_line; in GetAddressRangeFromHereToEndLine() local
730 false, &this_line); in GetAddressRangeFromHereToEndLine()
733 if (LineEntry::Compare(this_line, line_entry) == 0) { in GetAddressRangeFromHereToEndLine()
/freebsd/contrib/ncurses/form/
H A Dfrm_driver.c2821 FIELD_CELL *this_line, *prev_line, *prev_end, *this_end; in FE_Delete_Previous() local
2829 this_line = Address_Of_Row_In_Buffer(field, (form->currow)); in FE_Delete_Previous()
2832 this_end = After_End_Of_Data(this_line, field->dcols); in FE_Delete_Previous()
2833 if ((int)(this_end - this_line) > in FE_Delete_Previous()
2862 myADDNSTR(form->w, this_line, (int)(this_end - this_line)); in FE_Delete_Previous()