Home
last modified time | relevance | path

Searched refs:SYMREP (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/include/
H A Dshlex.h92 #define SYMREP 01000 /* symbols for doubled characters */ macro
93 #define BREAKCASESYM (SYMREP|';')
94 #define ANDFSYM (SYMREP|'&')
95 #define ORFSYM (SYMREP|'|')
96 #define IOAPPSYM (SYMREP|'>')
97 #define IODOCSYM (SYMREP|'<')
98 #define EXPRSYM (SYMREP|'(')
99 #define BTESTSYM (SYMREP|'[')
100 #define ETESTSYM (SYMREP|']')
/illumos-gate/usr/src/cmd/sh/
H A Dsym.h49 #define SYMREP 04000 macro
50 #define ECSYM (SYMREP|';')
51 #define ANDFSYM (SYMREP|'&')
52 #define ORFSYM (SYMREP|'|')
53 #define APPSYM (SYMREP|'>')
54 #define DOCSYM (SYMREP|'<')
H A Dword.c208 wdval = c | SYMREP; in word()
H A Dcmd.c594 if (sym & SYMREP) in prsym()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dlex.c571 c |= SYMREP; in sh_lex()
2108 if(sym&SYMREP) in fmttoken()
H A Dparse.c723 lexp->token = RPAREN|SYMREP; in arithfor()