Searched refs:lines (Results 1 - 25 of 102) sorted by relevance

12345

/haiku-fatelf/src/bin/coreutils/man/
H A Dnl.x2 nl \- number lines of files
H A Dpaste.x2 paste \- merge lines of files
H A Dsort.x2 sort \- sort lines of text files
H A Duniq.x2 uniq \- report or omit repeated lines
H A Dcsplit.x2 csplit \- split a file into sections determined by context lines
H A Djoin.x2 join \- join lines of two files on a common field
/haiku-fatelf/src/libs/ncurses/progs/
H A Dclear.c53 return (tputs(clear_screen, lines > 0 ? lines : 1, putch) == ERR)
/haiku-fatelf/src/libs/ncurses/tack/
H A Dpad.c173 int augment, repeats; /* number of characters (or lines) effected */
178 static char above_line[] = "The above lines should be all Xs. ";
216 if (l >= lines) {
319 for (j = 1; j < lines; j++) {
359 for (j = 1; j < lines; j++) {
387 ** 2) short lines
423 if (augment > lines || is_clear || !cursor_address) {
424 augment = lines;
429 if (augment < lines) {
432 lines
[all...]
H A Dcrum.c69 tputs(s, lines, tc_putch);
219 for (i = 2; i < lines - 1; i += 2) {
251 for (i = lines; i > 1; i--) {
276 put_newlines(lines / 2);
281 put_newlines(lines - 1);
407 for (i = 1; i < lines - 2; i++) {
412 tputs(tparm(cursor_address, 0, i), lines, tc_putch);
415 for (i = 0; i < lines - 2; i++) {
416 tputs(tparm(cursor_address, i, 0), lines, tc_putch);
H A Doutput.c626 tt_putparm(cursor_address, lines, 0, 0);
632 for (i = 1; i < lines; i++) {
653 tt_putparm(cursor_address, lines, lines - 1, 0);
656 tt_putparm(row_address, 1, lines - 1, 0);
659 for (i = 1; i < lines; i++)
664 line_count = lines - 1;
674 tt_tputs(clear_screen, lines);
677 tt_tputs(clr_eos, lines);
684 tt_putparm(cursor_address, lines, line
[all...]
/haiku-fatelf/src/bin/coreutils/src/
H A Djoin.c1 /* join - join lines of two files on a common field
79 /* One or more consecutive lines read from a file that all have the
83 size_t count; /* Elements used in `lines'. */
84 size_t alloc; /* Elements allocated in `lines'. */
85 struct line **lines; member in struct:seq
92 try to read two consecutive lines into the same buffer, since we don't
99 /* If nonzero, print unpairable lines in file 1 or 2. */
102 /* If nonzero, print pairable lines. */
154 /* Used to print non-joining lines */
173 For each pair of input lines wit
[all...]
H A Dwc.c1 /* wc - print the number of lines, words, and bytes in files
56 /* Cumulative number of lines, words, chars and bytes in all files so far.
96 {"lines", no_argument, NULL, 'l'},
124 -l, --lines print the newline counts\n\
143 write_counts (uintmax_t lines,
156 printf (format_int, number_width, umaxtostr (lines, buf));
192 uintmax_t lines, words, chars, bytes, linelength;
196 lines = words = chars = bytes = linelength = 0;
255 /* Use a separate loop when counting only lines or lines an
142 write_counts(uintmax_t lines, uintmax_t words, uintmax_t chars, uintmax_t bytes, uintmax_t linelength, const char *file) argument
191 uintmax_t lines, words, chars, bytes, linelength; local
[all...]
/haiku-fatelf/src/add-ons/screen_savers/message/
H A DMessage.cpp69 BString **lines = new BString*[count]; local
74 lines[i] = new BString();
75 message->CopyInto(*lines[i], start, end - start);
77 lines[i]->ReplaceAll("\t", " ");
79 if (lines[i]->Length() > maxLength) {
80 maxLength = lines[i]->Length();
85 *result = lines;
260 BString **lines = NULL; local
262 int count = get_lines(origMessage, &lines, &longestLine);
264 float stringWidth = font.StringWidth(lines[longestLin
[all...]
/haiku-fatelf/src/bin/gdb/readline/
H A Disearch.c66 identical lines many times in a row. */
160 /* The list of lines to search through. */
161 char **lines, *allocated_line; local
202 /* Create an arrary of pointers to the lines that we want to search. */
208 /* Allocate space for this many lines, +1 for the current input line,
209 and remember those lines. */
210 lines = (char **)xmalloc ((1 + (hlen = i)) * sizeof (char *));
212 lines[i] = hlist[i]->line;
215 lines[i] = _rl_saved_line_for_history->line;
221 lines[
[all...]
H A Dcomplete.c6 reading lines of text with interactive input and history editing.
409 _rl_internal_pager (lines)
410 int lines;
421 return (lines - 1);
1077 int count, limit, printed_len, lines; local
1105 lines = 0;
1127 lines++;
1128 if (_rl_page_completions && lines >= (_rl_screenheight - 1) && i < count)
1130 lines = _rl_internal_pager (lines);
[all...]
/haiku-fatelf/src/bin/network/wget/tests/
H A Drun-px129 my @lines = (
137 foreach my $line (@lines) {
146 @lines,
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DCompilerOutputter.cpp163 Lines lines = splitMessageIntoLines( message ); local
165 for ( Lines::iterator it = lines.begin(); it != lines.end(); ++it )
187 Lines lines; local
195 lines.push_back( message.substr( itStart - message.begin(),
201 return lines;
/haiku-fatelf/src/system/kernel/debug/
H A Ddebug_builtin_commands.cpp129 uint64 lines; member in struct:user_data
141 userData->lines = 0;
144 if (++userData->lines <= userData->max_lines) {
274 uint64 lines; member in struct:user_data
286 userData->lines = 0;
295 userData->lines, userData->words, userData->chars);
299 userData->lines++;
374 "Prints only the first lines of output from another command",
377 "<maxLines> lines of output from the previous command in the pipe and\n"
380 "Prints only the last lines o
[all...]
H A Dblue_screen.cpp388 int32 high = argCount > 1 ? args[1] : sScreen.lines;
395 int32 lines = argCount > 0 ? args[0] : 1;
396 while (lines > 0) {
398 lines--;
404 int32 lines = argCount > 0 ? args[0] : 1;
405 while (lines > 0) {
407 lines--;
/haiku-fatelf/src/bin/bash/lib/readline/
H A Disearch.c12 for reading lines of text with interactive input and history editing.
72 identical lines many times in a row. Now part of isearch context. */
95 cxt->lines = 0;
127 FREE (cxt->lines);
215 /* Create an arrary of pointers to the lines that we want to search. */
222 /* Allocate space for this many lines, +1 for the current input line,
223 and remember those lines. */
224 cxt->lines = (char **)xmalloc ((1 + (cxt->hlen = i)) * sizeof (char *));
226 cxt->lines[i] = hlist[i]->line;
229 cxt->lines[
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/common/
H A Dconsole.cpp54 int32 lines; member in struct:console_desc
96 if (newY >= console->lines)
97 newY = console->lines - 1;
111 console->scroll_bottom = console->lines - 1;
247 console->lines - console->y, ' ', console->attr);
305 if (bottom >= console->lines)
306 bottom = console->lines - 1;
462 int32 high = argCount > 1 ? args[1] : console->lines;
469 int32 lines = argCount > 0 ? args[0] : 1; local
470 while (lines >
478 int32 lines = argCount > 0 ? args[0] : 1; local
[all...]
/haiku-fatelf/src/tests/apps/miniterminal/
H A DConsole.cpp403 int32 lines = argCount > 0 ? args[0] : 1; local
404 while (lines > 0) {
406 lines--;
411 int32 lines = argCount > 0 ? args[0] : 1; local
412 while (lines > 0) {
414 lines--;
/haiku-fatelf/src/tests/kits/net/netperf/
H A Dtcp_stream_script104 echo lines of dashes.
/haiku-fatelf/src/bin/diffutils/src/
H A Dio.c40 /* Lines are put into equivalence classes of lines that match in lines_differ.
47 hash_value hash; /* Hash of lines in this class. */
53 buckets[-1] is reserved for incomplete lines. */
217 /* Split the file into lines, simultaneously computing the equivalence
430 /* Reuse existing class if lines_differ reports the lines
434 /* Reuse existing equivalence class if the lines are identical.
473 /* Record the line start for lines in the suffix that we care about.
474 Record one more line start than lines,
556 /* We have found N lines in a buffer of size S; guess the
557 proportionate number of lines tha
572 lin i, lines; local
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dlib_setup.c54 #include <term.h> /* lines, columns, cur_term */
119 /* Obtain lines/columns values from the environment and/or terminfo entry */
122 T(("screen size: terminfo lines = %d columns = %d", lines, columns));
125 *linep = (int) lines;
181 *linep = (int) lines;
199 lines = (short) (*linep);
216 int old_lines = lines;

Completed in 114 milliseconds

12345