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

/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_compression_uu.c240 int firstline; local
248 firstline = 20;
270 firstline = 0;
319 return (firstline+30);
330 return (firstline+40);
332 return (firstline+40);
334 return (firstline+30);
/macosx-10.10/vim-55/runtime/ftplugin/
H A Dabaqus.vim76 if strpart(getline(a:firstline), 0, 2) == "**"
78 silent execute a:firstline . ',' . a:lastline . 's/^\*\*//'
81 silent execute a:firstline . ',' . a:lastline . 's/^/**/'
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Duudecode.el81 (let ((cbuf (current-buffer)) tempfile firstline status)
86 (setq firstline (point))
111 (insert-buffer-substring cbuf firstline end)
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/include/
H A Dshlex.h53 int firstline; /* saved value of sh.st.firstline */ member in struct:_shlex_
H A Ddefs.h84 int firstline; member in struct:sh_scoped
/macosx-10.10/mail_cmds-30/mail/
H A Dsend.c71 int ishead, infld, ignoring = 0, dostat, firstline; local
89 firstline = 1;
97 if (firstline) {
102 firstline = 0;
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Drefresh.c108 Char *firstline = el->el_vdisplay[0]; local
113 firstline[0] = '\0'; /* empty the string */
114 el->el_vdisplay[i - 1] = firstline;
1079 Char *firstline = el->el_display[0]; local
1084 re__copy_and_pad(firstline, STR(""), 0);
1085 el->el_display[i - 1] = firstline;
/macosx-10.10/libedit-40/src/
H A Drefresh.c108 Char *firstline = el->el_vdisplay[0]; local
113 firstline[0] = '\0'; /* empty the string */
114 el->el_vdisplay[i - 1] = firstline;
1079 Char *firstline = el->el_display[0]; local
1084 re__copy_and_pad(firstline, STR(""), (size_t)0);
1085 el->el_display[i - 1] = firstline;
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Drefresh.c155 char *firstline = el->el_vdisplay[0]; local
160 firstline[0] = '\0'; /* empty the string */
161 el->el_vdisplay[i-1] = firstline;
1012 char *firstline = el->el_display[0]; local
1017 re__copy_and_pad(firstline, "", 0);
1018 el->el_display[i-1] = firstline;
/macosx-10.10/vim-55/src/
H A Dex_cmds2.c2928 char_u *firstline = NULL; local
3106 firstline = getsourceline(0, (void *)&cookie, 0);
3107 if (firstline != NULL && STRLEN(firstline) >= 3 && firstline[0] == 0xef
3108 && firstline[1] == 0xbb && firstline[2] == 0xbf)
3112 p = string_convert(&cookie.conv, firstline + 3, NULL);
3114 p = vim_strsave(firstline + 3);
3117 vim_free(firstline);
[all...]
H A Dops.c2461 char_u *firstline, *ins_text; local
2495 firstline = ml_get(oap->start.lnum) + bd.textcol;
2497 firstline += bd.textlen;
2498 pre_textlen = (long)STRLEN(firstline);
2568 * Subsequent calls to ml_get() flush the firstline data - take a
2571 firstline = ml_get(oap->start.lnum) + bd.textcol;
2573 firstline += bd.textlen;
2574 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2576 ins_text = vim_strnsave(firstline, (int)ins_len);
2611 char_u *firstline; local
[all...]
H A Dex_cmds.c6325 int firstline; local
6398 firstline = TRUE;
6403 if (firstline)
6432 firstline = FALSE;
H A Deval.c473 static int get_func_tv __ARGS((char_u *name, int len, typval_T *rettv, char_u **arg, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
474 static int call_func __ARGS((char_u *funcname, int len, typval_T *rettv, int argcount, typval_T *argvars, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
825 static void call_user_func __ARGS((ufunc_T *fp, int argcount, typval_T *argvars, typval_T *rettv, linenr_T firstline, linenr_T lastline, dict_T *selfdict));
8092 get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
8098 linenr_T firstline; /* first line of range */
8134 firstline, lastline, doesrange, evaluate, selfdict);
8157 call_func(funcname, len, rettv, argcount, argvars, firstline, lastline,
8165 linenr_T firstline; /* first line of range */
8292 firstline, lastline,
20537 || (p - arg == 9 && STRNCMP(arg, "firstline",
[all...]
H A Dfileio.c907 char_u firstline[80]; local
925 len = vim_read(fd, firstline, 80);
927 for (p = firstline; p < firstline + len; ++p)
/macosx-10.10/vim-55/runtime/syntax/
H A D2html.vim188 if a:f1.firstline != a:f2.firstline
190 return a:f1.firstline - a:f2.firstline
552 let s:newfold = {'firstline': s:lnum, 'lastline': foldclosedend(s:lnum), 'level': s:level,'type': "closed-fold"}
583 let s:newfold = {'firstline': s:lnum, 'lastline': foldclosedend(s:lnum), 'level': s:level,'type': "closed-fold"}
739 while !empty(s:allfolds) && get(s:allfolds,0).firstline == s:lnum
763 if get(s:allfolds, 1, {'firstline': 0}).firstline == s:lnum
776 if get(s:allfolds, 1, {'firstline'
[all...]
/macosx-10.10/file-46/file/src/
H A Dsoftmagic.c115 int firstline = 1; /* a flag to print X\n X\n- X */ local
180 if (print_sep(ms, firstline) == -1)
263 if (print_sep(ms, firstline)
302 firstline = 0;
2001 print_sep(struct magic_set *ms, int firstline) argument
2005 if (firstline)
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dhierarchy.itk1557 set firstline 1
1559 if {$firstline} {
1566 set firstline 0
/macosx-10.10/pcre-7/pcre/
H A Dpcre_dfa_exec.c2688 BOOL utf8, anchored, startline, firstline; local
2854 firstline = (re->options & PCRE_FIRSTLINE) != 0;
2900 /* If firstline is TRUE, the start of the match is constrained to the first
2905 if (firstline)
3087 and firstline is set. */
3089 if (firstline && IS_NEWLINE(current_subject)) break;
H A Dpcre_exec.c5187 BOOL firstline; local
5269 firstline = (re->options & PCRE_FIRSTLINE) != 0;
5487 /* If firstline is TRUE, the start of the match is constrained to the first
5493 if (firstline)
5713 if (firstline && IS_NEWLINE(start_match)) break;
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dxec.c1028 error_info.line = t->com.comline-shp->st.firstline;
1270 error_info.line = t->com.comline-shp->st.firstline;
1831 error_info.line = t->fork.forkline-shp->st.firstline;
1923 error_info.line = t->fork.forkline-shp->st.firstline;
2257 error_info.line = t->for_.forline-shp->st.firstline;
2481 error_info.line = t->ar.arline-shp->st.firstline;
2525 error_info.line = t->sw.swline-shp->st.firstline;
2702 error_info.line = t->funct.functline-shp->st.firstline;
2830 error_info.line = t->tst.tstline-shp->st.firstline;
H A Dinit.c717 shp->st.firstline += nget_lineno(np,fp)+1-n;
H A Dname.c356 error_info.line = fp->fortyp-shp->st.firstline;
/macosx-10.10/vim-55/runtime/macros/
H A Djustify.vim234 let cur = a:firstline
/macosx-10.10/vim-55/runtime/
H A Dfiletype.vim2027 let firstline = getline(1)
2028 if firstline =~ '^%&\s*\a\+'
2029 let format = tolower(matchstr(firstline, '\a\+'))
2061 endif " firstline =~ '^%&\s*\a\+'
/macosx-10.10/vim-55/runtime/autoload/
H A Dnetrw.vim974 " call Decho("(write selected portion) silent exe ".a:firstline."," . a:lastline . "w! ".fnameescape(v:cmdarg)." ".fnameescape(cygtmpfile))
975 exe "sil keepj ".a:firstline."," . a:lastline . "w! ".fnameescape(v:cmdarg)." ".fnameescape(cygtmpfile)
978 " call Decho("(write selected portion) silent exe ".a:firstline."," . a:lastline . "w! ".fnameescape(v:cmdarg)." ".fnameescape(tmpfile))
979 exe "sil keepj ".a:firstline."," . a:lastline . "w! ".fnameescape(v:cmdarg)." ".fnameescape(tmpfile)
1299 if a:firstline == 1 && a:lastline == line("$")
6718 " call Decho("firstline=".a:firstline." lastline=".a:lastline)
6740 let ctr= a:firstline
6995 let ctr = a:firstline
7325 " call Decho("firstline
[all...]

Completed in 628 milliseconds