HomeSort by relevance Sort by last modified time
    Searched refs:QUOTE (Results 1 - 25 of 53) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/sh/
mac.h 34 #define QUOTE 0200
ctype.h 95 #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) && _ctype2[c]&(T_DEF)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/kclient/
ksmb.c 37 #define QUOTE(x) #x
38 #define VAL2STR(x) QUOTE(x)
  /onnv/onnv-gate/usr/src/cmd/vi/port/
ex_vput.c 121 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...]
ex_get.c 197 putchar((int)('\b' | QUOTE));
198 putchar((int)(' ' | QUOTE));
199 putchar((int)('\b' | QUOTE));
ex_put.c 104 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)) /* no sign extension on 3B *
    [all...]
  /onnv/onnv-gate/usr/src/lib/lvm/libsvm/common/
getdrvname.c 42 #define QUOTE(x) #x
43 #define VAL2STR(x) QUOTE(x)
  /onnv/onnv-gate/usr/src/cmd/genmsg/
genmsg.h 42 * Default quote character for a message file.
44 #define QUOTE '"'
  /onnv/onnv-gate/usr/src/cmd/csh/
sh.char.h 24 #define isauxspZ (!isascii(Z)&&!(Z&QUOTE)&&iswspace(Z))
52 #define quoted(c) ((unsigned)(c) & QUOTE)
sh.print.c 88 * 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' &&
sh.dol.c 29 * 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);
296 * don't quote things if there was an error (err!=0)
301 return (c | QUOTE);
    [all...]
sh.lex.c 249 c |= QUOTE;
261 c |= QUOTE;
269 c |= QUOTE;
288 c |= QUOTE;
329 * don't quote things if there was an error (err!=0)
334 c |= QUOTE;
389 ungetC('$' | QUOTE);
836 *xp |= QUOTE;
sh.h 81 * 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
98 #define QUOTE 0x8000
  /onnv/onnv-gate/usr/src/common/openssl/crypto/conf/
keysets.pl 10 $QUOTE=0x40;
28 $v|=$QUOTE if ($c =~ /['`"]/); # for emacs: "`'}/)
123 #define CONF_QUOTE $QUOTE
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
defs.h 65 #define QUOTE 0200 /* used internally for quoted characters */
66 #define TRIM 0177 /* Mask to strip quote bit */
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
escparse.y 88 %token <tok> ID QUOTE NUMBER IF PATHFUNC
221 | QUOTE
342 | QUOTE
363 | QUOTE
  /onnv/onnv-gate/usr/src/lib/libpp/i386/
ppdebug.h 130 "QUOTE", QUOTE,
207 "QUOTE", IN_QUOTE,
ppdef.h 135 #define QUOTE (1L<<21)
  /onnv/onnv-gate/usr/src/lib/libpp/sparc/
ppdebug.h 130 "QUOTE", QUOTE,
207 "QUOTE", IN_QUOTE,
ppdef.h 135 #define QUOTE (1L<<21)
  /onnv/onnv-gate/usr/src/lib/libpp/common/
pp.tab 82 quote
130 ESCAPE # \ -> \\ in QUOTE|SQUOTE
142 QUOTE # processing "..." token
184 HEADEREXPANDALL # expanded < does not quote #include macros
  /onnv/onnv-gate/usr/src/lib/lvm/libpreen/common/
mdpreen.c 58 #define QUOTE(x) #x
59 #define VAL2STR(x) QUOTE(x)
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
glob.c 52 #define QUOTE 0200
343 switch (*pm & (QUOTE|TRIM)) {
356 case ','|QUOTE:
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
glob.c 56 #define QUOTE 0200
347 switch (*pm & (QUOTE | TRIM)) {
360 case ',' | QUOTE:
  /onnv/onnv-gate/usr/src/cmd/fmli/sys/
test.h 130 #define QUOTE 0200

Completed in 300 milliseconds

1 2 3