Searched defs:expr (Results 1 - 2 of 2) sorted by relevance

/system/core/sh/
H A Darith.y76 exp: expr {
82 expr: ARITH_LPAREN expr ARITH_RPAREN { $$ = $2; } label
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_BXO
[all...]
H A Dnodes.h81 union node *expr; member in struct:ncase

Completed in 45 milliseconds