Home
last modified time | relevance | path

Searched refs:expr (Results 1 – 9 of 9) sorted by relevance

/system/core/sh/
Darith.y76 exp: expr {
82 expr: ARITH_LPAREN expr ARITH_RPAREN { $$ = $2; }
83 | expr ARITH_OR expr { $$ = $1 ? $1 : $3 ? $3 : 0; }
84 | expr ARITH_AND expr { $$ = $1 ? ( $3 ? $3 : 0 ) : 0; }
85 | expr ARITH_BOR expr { $$ = $1 | $3; }
86 | expr ARITH_BXOR expr { $$ = $1 ^ $3; }
87 | expr ARITH_BAND expr { $$ = $1 & $3; }
88 | expr ARITH_EQ expr { $$ = $1 == $3; }
89 | expr ARITH_GT expr { $$ = $1 > $3; }
90 | expr ARITH_GE expr { $$ = $1 >= $3; }
[all …]
Dnodes.c157 calcsize(n->ncase.expr);
255 new->ncase.expr = copynode(n->ncase.expr);
Dnodes.h81 union node *expr; member
Dnodetypes95 expr nodeptr # the word to switch on
Deval.c400 expandarg(n->ncase.expr, &arglist, EXP_TILDE); in evalcase()
Djobs.c1319 cmdputs(n->ncase.expr->narg.text); in cmdtxt()
Dparser.c412 n1->ncase.expr = n2 = (union node *)stalloc(sizeof (struct narg)); in command()
/system/extras/tests/fstest/
Dmounts-test.sh18 rtrn=$(expr $rtrn + 1)
28 rtrn=$(expr $rtrn + 1)
/system/core/libacc/
Dacc.cpp4657 expr(); in unaryOrAssignment()
4667 expr(); in unaryOrAssignment()
4844 expr(); in unary()
5002 expr(); in commaExpr()
5009 void expr() { in expr() function in acc::Compiler
5764 expr(); in localDeclarations()