Searched refs:nlines (Results 1 - 25 of 57) sorted by relevance

123

/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dsanity_test.c113 int nlines; local
127 nlines = 0;
130 RE(atf_dynstr_init(&lines[nlines]));
132 eof = read_line(atf_process_child_stderr(&child), &lines[nlines]);
133 nlines++;
134 } while (nlines < 3);
135 ATF_REQUIRE(nlines == 0 || nlines == 3);
170 while (nlines > 0) {
171 nlines
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/termcap/
H A Dtermcap.h31 extern void tputs (const char *string, int nlines, int (*outfun) (int));
H A Dtermcap.c312 tputs (str, nlines, outfun)
314 int nlines;
352 padcount *= nlines;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dmakesum.el92 line lines nlines
94 (setq nlines (count-lines start end))
95 (if (<= nlines 1)
97 (setq half (/ (1+ nlines) 2))
101 (while (< half nlines)
H A Dreplace.el973 (defun occur (regexp &optional nlines)
989 (occur-1 regexp nlines (list (current-buffer))))
991 (defun multi-occur (bufs regexp &optional nlines)
1013 (occur-1 regexp nlines bufs))
1049 (defun occur-1 (regexp nlines bufs &optional buf-name)
1074 (or nlines list-matching-lines-default-context-lines)
1088 (setq occur-revert-arguments (list regexp nlines bufs))
1103 (defun occur-engine (regexp buffers out-buf nlines case-fold-search
1189 (if (= nlines 0)
1197 (occur-engine-add-prefix (nreverse (cdr (occur-accumulate-lines (- (1+ (abs nlines))) kee
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Dwclib.c102 static int invalid(const char *file, int nlines) argument
105 error_info.line = nlines;
109 return nlines;
169 register Sfoff_t nlines; local
183 nlines = nwords = nchars = nbytes = 0;
230 if (x == -1 && eline != nlines && !(wp->mode & WC_QUIET))
231 eline = invalid(file, nlines);
240 nlines++;
264 nlines++;
272 nlines
[all...]
/macosx-10.10/less-25/less/
H A Dforwback.c110 int nlines = 0; local
211 nlines++;
264 if (nlines == 0)
282 int nlines = 0; local
307 nlines++;
317 if (nlines == 0)
/macosx-10.10/ncurses-44/ncurses/c++/
H A Dcursesp.h101 NCursesPanel(int nlines, argument
105 : NCursesWindow(nlines,ncols,begin_y,begin_x), p(0)
231 NCursesUserPanel (int nlines, argument
236 : NCursesPanel (nlines, ncols, begin_y, begin_x)
H A Dcursesm.h265 NCursesMenu( int nlines, argument
269 : NCursesPanel(nlines,ncols,begin_y,begin_x),
297 int nlines,
303 : NCursesPanel(nlines, ncols, begin_y, begin_x),
627 NCursesUserMenu( int nlines, argument
632 : NCursesMenu(nlines,ncols,begin_y,begin_x) {
648 int nlines,
654 : NCursesMenu (Items, nlines, ncols, begin_y, begin_x, with_frame) {
296 NCursesMenu(NCursesMenuItem* Items[], int nlines, int ncols, int begin_y = 0, int begin_x = 0, bool with_frame=FALSE, bool autoDelete_Items=FALSE) argument
647 NCursesUserMenu(NCursesMenuItem Items[], int nlines, int ncols, int begin_y = 0, int begin_x = 0, const T* p_UserData = STATIC_CAST(T*)(0), bool with_frame=FALSE) argument
H A Dcursesf.h404 NCursesForm( int nlines, argument
408 : NCursesPanel(nlines, ncols, begin_y, begin_x),
436 int nlines,
442 : NCursesPanel(nlines, ncols, begin_y, begin_x),
669 NCursesUserForm( int nlines, argument
674 : NCursesForm(nlines,ncols,begin_y,begin_x) {
690 int nlines,
697 : NCursesForm (Fields, nlines, ncols, begin_y, begin_x,
435 NCursesForm(NCursesFormField* Fields[], int nlines, int ncols, int begin_y, int begin_x, bool with_frame=FALSE, bool autoDelete_Fields=FALSE) argument
689 NCursesUserForm(NCursesFormField Fields[], int nlines, int ncols, int begin_y = 0, int begin_x = 0, const T* p_UserData = STATIC_CAST(T*)(0), bool with_frame=FALSE, bool autoDelete_Fields=FALSE) argument
H A Dcursespad.cc41 NCursesPad::NCursesPad(int nlines, int ncols) argument
48 w = ::newpad(nlines, ncols);
H A Dcursesw.h803 NCursesWindow(int nlines, // number of lines
809 int nlines, // number of lines
1374 NCursesColorWindow(int nlines, // number of lines argument
1378 : NCursesWindow(nlines, ncols, begin_y, begin_x) {
1382 int nlines, // number of lines
1388 nlines, ncols, // absolute screen pos,
1456 NCursesPad(int nlines, int ncols);
1532 NCursesFramedPad(NCursesWindow& win, int nlines, int ncols, argument
1534 : NCursesPad(nlines, ncols) {
1381 NCursesColorWindow(NCursesWindow& parentWin, int nlines, int ncols, int begin_y, int begin_x, char absrel = �) argument
/macosx-10.10/nano-12/src/
H A Dwinio.c2833 * DOWN_DIR, and nlines is the number of lines to scroll. We change
2836 void edit_scroll(scroll_dir direction, ssize_t nlines) argument
2843 if (nlines < 1)
2846 /* Part 1: nlines is the number of lines we're going to scroll the
2850 * value of direction) nlines lines, or as many lines as we can if
2851 * there are fewer than nlines lines available. */
2852 for (i = nlines; i > 0; i--) {
2864 /* Limit nlines to the number of lines we could scroll. */
2865 nlines -= i;
2870 if (nlines
2950 ssize_t nlines; local
3049 int nlines; local
[all...]
/macosx-10.10/text_cmds-88/sort/
H A Dsort.c130 size_t nlines; /* Number of lines in the line array. */ member in struct:buffer
795 buf->used = buf->left = buf->nlines = 0;
975 buf->nlines = 0;
982 struct line *line = linelim - buf->nlines;
983 size_t avail = (char *) linelim - buf->nlines * line_bytes - ptr;
984 char *line_start = buf->nlines ? line->text + line->length : buf->buf;
1051 buf->nlines = buffer_linelim (buf) - line;
1052 if (buf->nlines != 0)
1388 struct line const *linebase = line - buf.nlines;
1415 line_number += buf.nlines;
1686 sortlines(struct line *lines, size_t nlines, struct line *temp) argument
1719 sortlines_temp(struct line *lines, size_t nlines, struct line *temp) argument
[all...]
/macosx-10.10/mail_cmds-30/msgs/
H A Dmsgs.c142 int nlines; variable
506 nlines = 2;
509 nlines++;
513 nlines++;
518 nlines++;
520 while (nlines < 6
524 nlines++;
591 prmesg(nlines + lct + (seensubj? 1 : 0));
/macosx-10.10/vim-55/src/proto/
H A Dundo.pro6 int u_savedel __ARGS((linenr_T lnum, long nlines));
/macosx-10.10/mail_cmds-30/mail/
H A Dcmd1.c305 int nlines, *ip; local
315 nlines = 0;
318 nlines += message[*ip - 1].m_lines;
320 if (page || nlines > (*cp ? atoi(cp) : realscreenheight)) {
H A Dcollect.c99 int nlines, usepager; local
479 nlines = atoi(envptr);
481 nlines = 0;
485 if (nlines>0) {
491 if (nlines < countlines) {
497 if (nlines < countlines) {
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dcoffgrok.h152 int nlines; member in struct:coff_line
H A Dcoffdump.c103 printf (_("#lines %d "),p->nlines);
105 for (i = 0; i < p->nlines; i++)
/macosx-10.10/groff-38/groff/src/devices/grotty/
H A Dtty.cpp199 int nlines; member in class:tty_printer
291 nlines = 66;
292 lines = new glyph *[nlines];
293 for (int i = 0; i < nlines; i++)
396 if (vpos > nlines) {
399 memcpy(lines, old_lines, nlines * sizeof(glyph *));
400 for (int i = nlines; i <= vpos; i++)
403 nlines = vpos + 1;
626 for (last_line = nlines; last_line > 0; last_line--)
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pop3d/
H A Dpop3d.tcl850 set nlines [lindex $line 2]
857 } elseif {$nlines == {}} {
859 } elseif {$nlines < 0} {
862 } elseif {$nlines == 0} {
863 # nlines == 0, no limit, same as H_retr
866 # nlines > 0
867 Transfer $name $sock $msgid $nlines
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dcompresult.c1466 return listdat.nlines;
1505 int hidden = 0, nlist = 0, nlines = 0; local
1556 nlines += 1 + (MB_METASTRWIDTH(sptr)-1) /
1561 nlines += (MB_METASTRWIDTH(sptr)-1) / zterm_columns;
1565 nlines++;
1568 /*** nlines--; */
1600 nlines += 1 + printfmt(m->disp, 0, 0, 0);
1641 nlines += 1 + printfmt((*e)->str,
1717 nlines += glines;
1885 nlines
[all...]
H A Dzle_tricky.c2569 int len, ncols, nlines, tolast, col, i, max, pack = 0, *lenp; local
2589 nlines = (num + ncols - 1) / ncols;
2629 tlines < nlines; tlines++) {
2650 if ((pack = (tlines < nlines))) {
2651 nlines = tlines;
2656 nlines = 0;
2658 nlines += 1 + (strlen(*p) / zterm_columns);
2667 if ((max && num > max) || (!max && nlines > zterm_lines)) {
2673 num, nlines) :
2674 fprintf(shout, "zsh: do you wish to see all %d lines? ", nlines));
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dtermcap.c377 tputs (str, nlines, outfun)
379 int nlines;
415 padcount *= nlines;

Completed in 305 milliseconds

123