Searched refs:sh_syntaxtab (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dsyntax.h68 extern int sh_syntaxtab[];
71 #define shellmeta(c) (sh_syntaxtab[(unsigned char)(c)] & CSHMETA)
72 #define shellbreak(c) (sh_syntaxtab[(unsigned char)(c)] & CSHBRK)
73 #define shellquote(c) (sh_syntaxtab[(unsigned char)(c)] & CQUOTE)
74 #define shellxquote(c) (sh_syntaxtab[(unsigned char)(c)] & CXQUOTE)
76 #define shellblank(c) (sh_syntaxtab[(unsigned char)(c)] & CBLANK)
78 #define issyntype(c, t) ((sh_syntaxtab[(unsigned char)(c)] & (t)) != 0)
79 #define notsyntype(c,t) ((sh_syntaxtab[(unsigned char)(c)] & (t)) == 0)
H A Dlocale.c500 sh_syntaxtab[x] |= CSHBRK|CBLANK;
503 sh_syntaxtab[x] |= CSHBRK;
504 sh_syntaxtab[x] &= ~CBLANK;
507 sh_syntaxtab[x] &= ~(CSHBRK|CBLANK);
H A Dsubst.c108 #define VALID_PARAM_EXPAND_CHAR(c) (sh_syntaxtab[(unsigned char)c] & CSUBSTOP)
113 (name[1] == '\0' && (sh_syntaxtab[(unsigned char)*name] & CSPECVAR)) || \
667 (stripdq && ((dquote && (sh_syntaxtab[c] & CBSDQUOTE)) || dquote == 0)))
5139 ((sh_syntaxtab[(unsigned char) name[1]] & CSPECVAR) && name[2] == '\0') || /* special param */
5192 else if ((sh_syntaxtab[(unsigned char) name[1]] & CSPECVAR) && name[2] == '\0')
7068 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && ((sh_syntaxtab[c] & tflag) == 0))
7473 if (((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) || dquote) && (sh_syntaxtab[c] & CBSDQUOTE) == 0)
7577 /* Should really merge ifs_cmap with sh_syntaxtab. XXX - doesn't yet
H A Dparse.y3405 (cd == '"' && peek_char >= 0 && (sh_syntaxtab[peek_char] & CBSDQUOTE)))
/macosx-10.10.1/bash-94.1.2/
H A Dsyntax.c12 int sh_syntaxtab[256] = { variable

Completed in 318 milliseconds