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

12

/illumos-gate/usr/src/cmd/sh/
H A Dmac.h37 #define NL '\n' macro
50 #define newline() prc(NL)
H A Dword.c65 while ((c = readwc()) != NL && c != EOF);
90 if (c == NL)
162 if (c == NL)
255 if ((c = readwc()) == NL) {
322 if (c == NL)
332 if (c == NL)
370 if (c == NL)
H A Dcmd.c115 if (wdval == NL)
142 if (sym == NL)
328 if (wdval != NL && wdval != ';')
330 if (wdval == NL)
381 if ((wdval != NL) && ((peekn = skipwc()) == '('))
499 while ((reserv++, word() == NL))
596 if (sym == NL)
H A Dbltin.c94 prc_buff(NL);
231 prc_buff(NL);
356 prc_buff(NL);
H A Dname.c559 prc_buff(NL);
573 prc_buff(NL);
585 prc_buff(NL);
H A Dpwd.c259 prc_buff(NL);
H A Dfunc.c206 prc_buff(NL);
217 prc_buff(NL);
H A Dhashserv.c207 prc_buff(NL);
386 prc_buff(NL);
H A Djobs.c546 prc_buff(NL);
593 prc(NL);
602 prc(NL);
1026 sep = NL;
1028 prc_buff(NL);
/illumos-gate/usr/src/cmd/tnf/prex/
H A Dprexgram.y54 %token NL
149 | error NL { yyerrok; }
152 empty_statement : NL
171 help_statement : HELP NL { help(); }
172 | HELP command NL { help_on_command($2); }
173 | HELP IDENT NL { help_on_topic($2); }
176 continue_statement : CONTINUE NL
182 quit_statement : QUIT NL { quit(B_TRUE, B_TRUE); }
183 | QUIT KILL NL { quit(B_TRUE, B_FALSE); }
184 | QUIT RESUME NL { qui
[all...]
H A Dprexlex.l66 \n { source_nl(); return NL; }
/illumos-gate/usr/src/cmd/asa/
H A Dasa.c41 #define NL '\n' macro
102 (void) putchar(NL);
111 case NL:
113 (void) putchar(NL);
124 (void) putchar(NL);
125 (void) putchar(NL);
130 (void) putchar(NL);
137 (void) putchar(NL);
145 if (c == NL) {
158 (void) putchar(NL);
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dcrtctl.h45 #define NL 0134 /* Terminal newline function */ macro
/illumos-gate/usr/src/ucblib/libcurses/
H A Dcr_put.c92 if (NL)
93 (void) _puts(NL);
134 if (NL /* && !XB */ && _pfast)
135 (void) _puts(NL);
295 if (NL)
296 (void) tputs(NL, 0, plodput);
306 if (NL)
307 (void) tputs(NL, 0, plodput);
H A Dcurses.c56 *LL, *MA, *ND, *NL, *RC, *SC, *SE, *SF, *SO, *SR, *TA, *TE, variable
/illumos-gate/usr/src/lib/krb5/ss/
H A Dlist_rqs.c30 static char const NL[2] = "\n"; variable
110 strncat(buffer, NL, sizeof(buffer) - 1 - strlen(buffer));
124 strncat(buffer, NL, sizeof(buffer) - 1 - strlen(buffer));
/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y61 %token <i> NL ',' '{' '(' '|' ';' '/' ')' '}' '[' ']'
114 AND | and NL
118 BOR | bor NL
122 ',' | comma NL
126 DO | do NL
130 ELSE | else NL
152 '{' | lbrace NL
156 NL | nl NL
284 NL | ';' | ps
[all...]
/illumos-gate/usr/src/cmd/oawk/
H A Dawk.g.y41 %token NL
90 | begin NL
97 | end NL
205 NL
293 NL
/illumos-gate/usr/src/cmd/troff/
H A Dn7.c101 if (dip == d && numtab[NL].val == -1) {
211 if (numtab[NL].val > dip->hnl)
212 dip->hnl = numtab[NL].val;
263 if ((dip == d) && (numtab[NL].val == -1)) {
492 numtab[NL].val += nlss;
501 if (numtab[NL].val < pl)
504 ejf = dip->hnl = numtab[NL].val = 0;
541 if (numtab[NL].val == 0) {
544 } else if ((i = findt(numtab[NL].val - nlss)) <= nlss) {
545 if ((j = findn1(numtab[NL]
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Dstty.c114 #define NL 0x0002 /* entry ends line of display */ macro
161 { "kill", CHAR, T_CHAR, NL|SS, VKILL, 'U', C("Erase the current line") },
169 { "eol", CHAR, T_CHAR, NL|US, VEOL, _POSIX_VDISABLE, C("End the line") },
180 { "susp", CHAR, T_CHAR, NL|SS, VSUSP, 'Z', C("Send a terminal stop signal") },
192 { "lnext", CHAR, T_CHAR, NL|SS, VLNEXT, 'V', C("Enter the next input character literally") },
219 { "clocal", BIT, C_FLAG, NL, CLOCAL, CLOCAL, C("Disable (enable) modem control signals") },
241 { "icrnl", BIT, I_FLAG, NL|SS, ICRNL, ICRNL, C("Translate (do not translate) carriage return to newline") },
281 { "tostop", BIT, L_FLAG, NL|US, TOSTOP, TOSTOP, C("Stop (do not stop) background jobs that try to write to the terminal") },
340 { "", MIXED, O_FLAG, NL|IG },
485 if(tp->flags&NL)
[all...]
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/helptools/
H A DparseMain.java32 static final String NL = new String("\n"); field in class:ResourceWriter
94 writenl(NL + INDENT_2 + NOLOCALIZE);
102 writenl(NL + INDENT_2 + LOCALIZE);
110 writenl(NL + INDENT_2 + NOLOCALIZE);
118 writenl(NL + INDENT_2 + LOCALIZE);
128 writenl(NL + INDENT_2 + LOCALIZE);
150 writenl(NL);
/illumos-gate/usr/src/tools/cscope-fast/
H A Dcgrep.c174 #define NL '\n' macro
408 if (*(*me - 1) != NL)
409 while (**me != NL)
414 if (*mb == *me - 1 && **mb == NL) {
420 if (**mb == NL)
422 if (*(*me - 1) == NL)
435 for (f = *me - 1; *f != NL; f++) {
438 for (s = *mb; *s != NL; s--) {
540 case Dot: return ((BOOL)(a != NL));
968 case '^': case '$': toktype = Literal; toklit = NL; brea
[all...]
/illumos-gate/usr/src/lib/libsec/common/
H A Dacl.y46 %token COLON COMMA NL SLASH
61 acl: acl_entry NL
68 | acl_entry COMMA NL
/illumos-gate/usr/src/lib/libshell/common/include/
H A Dshlex.h70 #define NL '\n' macro
130 #define SH_SEMI 0200 /* semi-colon after NL ok */
/illumos-gate/usr/src/cmd/fs.d/udfs/fsdb/
H A Dfsdb_lex.l43 \n { cmd_no++; return NL; }

Completed in 87 milliseconds

12