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

123

/opensolaris-onvv-gate/usr/src/cmd/sh/
H A Dmac.h34 #define QUOTE 0200 macro
H A Dctype.h95 #define space(c) ((c<QUOTE) && _ctype1[c]&(T_SPC))
96 #define eofmeta(c) ((c<QUOTE) && _ctype1[c]&(_META|T_EOF))
97 #define qotchar(c) ((c<QUOTE) && _ctype1[c]&(T_QOT))
98 #define eolchar(c) ((c<QUOTE) && _ctype1[c]&(T_EOR|T_EOF))
99 #define dipchar(c) ((c<QUOTE) && _ctype1[c]&(T_DIP))
100 #define subchar(c) ((c<QUOTE) && _ctype1[c]&(T_SUB|T_QOT))
101 #define escchar(c) ((c<QUOTE) && _ctype1[c]&(T_ESC))
109 #define digit(c) ((c<QUOTE) && _ctype2[c]&(T_DIG))
110 #define dolchar(c) ((c<QUOTE) && _ctype2[c]&(T_AST|T_BRC|T_DIG|T_IDC|T_SHN))
111 #define defchar(c) ((c<QUOTE)
[all...]
/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dksmb.c37 #define QUOTE(x) #x macro
38 #define VAL2STR(x) QUOTE(x)
H A Dksetpw.c34 #define QUOTE(x) #x macro
35 #define VAL2STR(x) QUOTE(x)
/opensolaris-onvv-gate/usr/src/cmd/vi/port/
H A Dex_vput.c121 while (i > 0 && (j = *tp & (QUOTE|TRIM))) {
122 if (j != ' ' && (j & QUOTE) == 0) {
542 * with a QUOTE. We use QUOTE internally to represent a position
551 (*Outchar)(QUOTE);
690 * use QUOTE here since we really need to print blanks.
691 * QUOTE|' ' is the representation of this.
694 c = ' ' | QUOTE;
711 if(c & QUOTE)
728 if (*tp++ & QUOTE) {
[all...]
H A Dex_get.c194 putchar((int)('\b' | QUOTE));
195 putchar((int)(' ' | QUOTE));
196 putchar((int)('\b' | QUOTE));
H A Dex_put.c104 c &= (int)(TRIM|QUOTE);
116 case (int)('\n' | QUOTE):
121 if((int)(c & QUOTE))
139 c &= (int)(TRIM|QUOTE);
144 if ((int)(c & QUOTE))
147 case (int)(' ' | QUOTE):
148 case (int)('\b' | QUOTE):
151 case (int)QUOTE:
219 putchar((int)('\n' | QUOTE));
798 if((int)(wchar & QUOTE)) /* n
[all...]
/opensolaris-onvv-gate/usr/src/lib/lvm/libsvm/common/
H A Dgetdrvname.c42 #define QUOTE(x) #x macro
43 #define VAL2STR(x) QUOTE(x)
/opensolaris-onvv-gate/usr/src/cmd/genmsg/
H A Dgenmsg.h44 #define QUOTE '"' macro
/opensolaris-onvv-gate/usr/src/cmd/csh/
H A Dsh.char.h24 #define isauxspZ (!isascii(Z)&&!(Z&QUOTE)&&iswspace(Z))
52 #define quoted(c) ((unsigned)(c) & QUOTE)
H A Dsh.print.c88 * except an un-QUOTE'd control character, which is displayed
95 if ((c & QUOTE) == 0 && (c == 0177 || c < ' ' && c != '\t' &&
144 * except an un-QUOTE'd control character, which is displayed
151 if ((c & QUOTE) == 0 && (c == 0177 || c < ' ' && c != '\t' &&
H A Dsh.dol.c29 * QUOTE bits on characters (which prevent further interpretation).
197 if ((c & (QUOTE|TRIM)) == ('\n' | QUOTE))
208 wbuf[wp++] = c == '`' ? '`' : c | QUOTE;
213 wbuf[wp++] = c | QUOTE;
232 c |= QUOTE;
252 c |= QUOTE;
289 c = *lap++ & (QUOTE|TRIM);
301 return (c | QUOTE);
305 if (c = *dolp++ & (QUOTE|TRI
[all...]
H A Dsh.lex.c249 c |= QUOTE;
261 c |= QUOTE;
269 c |= QUOTE;
288 c |= QUOTE;
334 c |= QUOTE;
389 ungetC('$' | QUOTE);
836 *xp |= QUOTE;
H A Dsh.h81 * tchar (Tagged CHARacter) is a place holder to keep a QUOTE bit and
88 * The QUOTE bit tells whether the character is subject to further
90 * subsitution. TRIM is a mask to strip off the QUOTE bit.
94 #define QUOTE 0x80000000 macro
98 #define QUOTE 0x8000 macro
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Ddefs.h65 #define QUOTE 0200 /* used internally for quoted characters */ macro
/opensolaris-onvv-gate/usr/src/cmd/fm/eversholt/common/
H A Descparse.y86 %token <tok> ID QUOTE NUMBER IF PATHFUNC
219 | QUOTE
340 | QUOTE
361 | QUOTE
/opensolaris-onvv-gate/usr/src/lib/libpp/i386/
H A Dppdebug.h130 "QUOTE", QUOTE,
207 "QUOTE", IN_QUOTE,
H A Dppdef.h135 #define QUOTE (1L<<21) macro
/opensolaris-onvv-gate/usr/src/lib/libpp/sparc/
H A Dppdebug.h130 "QUOTE", QUOTE,
207 "QUOTE", IN_QUOTE,
H A Dppdef.h135 #define QUOTE (1L<<21) macro
/opensolaris-onvv-gate/usr/src/lib/libpp/common/
H A Dpp.tab130 ESCAPE # \ -> \\ in QUOTE|SQUOTE
142 QUOTE # processing "..." token
/opensolaris-onvv-gate/usr/src/lib/lvm/libpreen/common/
H A Dmdpreen.c58 #define QUOTE(x) #x macro
59 #define VAL2STR(x) QUOTE(x)
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dglob.c52 #define QUOTE 0200 macro
343 switch (*pm & (QUOTE|TRIM)) {
356 case ','|QUOTE:
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dglob.c53 #define QUOTE 0200 macro
344 switch (*pm & (QUOTE | TRIM)) {
357 case ',' | QUOTE:
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/conf/
H A Dkeysets.pl10 $QUOTE=0x40;
28 $v|=$QUOTE if ($c =~ /['`"]/); # for emacs: "`'}/)
123 #define CONF_QUOTE $QUOTE

Completed in 138 milliseconds

123