Searched refs:lastc (Results 1 - 20 of 20) sorted by relevance

/macosx-10.10/adv_cmds-158/finger/
H A Dnet.c115 int c, lastc; local
181 lastc = 0;
192 if (lastc == '\r') /* ^M^M - skip dupes */
195 lastc = '\r';
201 if (lastc != '\r' || c != '\n')
202 lastc = c;
204 lastc = '\n';
212 lastc = '\r';
214 if (lastc == '\n' || lastc
[all...]
H A Dlprint.c302 char *p, lastc; local
305 lastc = '\0';
327 vputc(lastc = *p);
328 if (lastc != '\n')
342 vputc(lastc = ch);
343 if (lastc != '\n')
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Disearch.c109 cxt->lastc = 0;
307 c = cxt->lastc = rl_read_key ();
312 c = cxt->lastc = _rl_read_mbstring (cxt->lastc, cxt->mb, MB_LEN_MAX);
344 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -1 : -2;
346 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -2 : -1;
348 cxt->lastc = -3;
350 cxt->lastc = -4;
352 cxt->lastc = -5;
354 cxt->lastc
[all...]
H A Dreadline.c450 static int lastc, eof_found; local
453 lastc = -1;
507 if (((c == _rl_eof_char && lastc != c) || c == EOF) && !rl_end)
518 lastc = c;
H A Drlprivate.h71 int lastc; member in struct:__rl_search_context
/macosx-10.10/zsh-61/zsh/Src/
H A Dinput.c187 int lastc; local
195 if (itok(lastc = STOUC(*inbufptr++)))
197 if (((inbufflags & INP_LINENO) || !strin) && lastc == '\n')
199 return lastc;
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A Dregengine.inc691 int lastc; /* previous c */
704 lastc = c;
709 /* is there an EOL and/or BOL between lastc and c? */
712 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
713 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
733 if ( (lastc != OUT && ISWORD(lastc)) &&
776 int lastc; /* previou
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/zkt/
H A Dncparse.c116 int lastc; local
144 lastc = EOF; /* read until end of c comment */
145 while ( (c = getc (fp)) != EOF && !(lastc == '*' && c == '/') )
146 lastc = c;
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dlex.c101 int lastc; member in struct:lexdata
119 ((lp->lexd.lex_match[lp->lexd.level++]=lp->lexd.lastc),\
120 lp->lexd.lastc=(((s)<<CHAR_BIT)|(c))))
121 #define oldmode(lp) (lp->lexd.lastc>>CHAR_BIT)
122 #define endchar(lp) (lp->lexd.lastc&0xff)
123 #define setchar(lp,c) (lp->lexd.lastc = ((lp->lexd.lastc&~0xff)|(c)))
124 #define poplevel(lp) (lp->lexd.lastc=lp->lexd.lex_match[--lp->lexd.level])
282 lp->lexd.lex_state = lp->lexd.lastc=0;
/macosx-10.10/cups-408/cups/vcnet/regex/
H A Dengine.c637 register int lastc; /* previous c */ local
650 lastc = c;
655 /* is there an EOL and/or BOL between lastc and c? */
658 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
659 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
675 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
679 if ( (lastc != OUT && ISWORD(lastc)) &&
728 register int lastc; /* previou local
[all...]
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_move.c175 convchar_t lastc = (convchar_t)0; /* not used, silence compiler */ local
204 *retchr = lastc;
239 *retchr = lastc;
251 lastc = wc;
268 *retchr = lastc;
H A Dzle_keymap.c1410 int lastlen = 0, lastc = lastchar; local
1446 lastc = lastchar;
1454 lastchar = lastc;
H A Dcompresult.c2248 iprintm(Cmgroup g, Cmatch *mp, UNUSED(int mc), UNUSED(int ml), int lastc, int width) argument
2283 if (!lastc) {
H A Dcomplist.c1692 clprintm(Cmgroup g, Cmatch *mp, int mc, int ml, int lastc, int width) argument
1861 if (!lastc) {
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dcookie.c350 struct Cookie *lastc=NULL; local
813 make sure the 'lastc' pointer is properly set */
815 lastc = clist;
821 lastc = clist;
834 if(lastc)
835 lastc->next = co;
/macosx-10.10/efax-38/efax/
H A Defaxlib.c224 register uchar *p, c, lastc = 0x00 ; local
238 if ( ( lastc & 0x01 ) ? ! ( c & 0x80 ) : ( c & 0x80 ) )
244 lastc = c ;
/macosx-10.10/vim-55/src/
H A Dedit.c219 static void ins_shift __ARGS((int c, int lastc));
309 int lastc; local
721 lastc = c; /* remember previous char for CTRL-D */
1057 ins_shift(c, lastc);
8308 ins_shift(c, lastc)
8310 int lastc;
8319 if (c == Ctrl_D && (lastc == '0' || lastc == '^')
8327 if (lastc == '^')
H A Dsearch.c1535 static int lastc = NUL; /* last character searched for */ local
1550 lastc = c;
1566 if (lastc == NUL)
1573 c = lastc;
/macosx-10.10/apache-793/httpd/server/
H A Dconfig.c1128 char *lastc = cmd_name + strlen(cmd_name) - 1; local
1129 if (*lastc == '>') {
1130 *lastc = '\0' ;
/macosx-10.10/tidy-15.15/tidy/src/
H A Dlexer.c2987 uint c, lastc; local
3063 lastc = c;
3080 if (lastc == '-' && (c == '"' || c == '\''))
3098 lastc = c;
3215 uint c, lastc, delim, quotewarning; local
3300 lastc = c; /* track last character */
3428 if (lastc == ' ')

Completed in 198 milliseconds