Lines Matching defs:priority
1026 lu_byte left; /* left priority for each binary operator */
1027 lu_byte right; /* right priority */
1028 } priority[] = { /* ORDER OPR */
1041 #define UNARY_PRIORITY 12 /* priority for unary operators */
1046 ** where 'binop' is any binary operator with a priority higher than 'limit'
1062 while (op != OPR_NOBINOPR && priority[op].left > limit) {
1068 /* read sub-expression with higher priority */
1069 nextop = subexpr(ls, &v2, priority[op].right);