Lines Matching refs:cx
1017 | cond_or_expr '|' cond_and_expr { $$ = MKF2(cx, or, $1, $3); }
1022 | cond_and_expr '&' cond_prefix_expr { $$ = MKF2(cx, and, $1, $3); }
1028 /* | '!' cond_prefix_expr { $$ = MKF1(cx, not, $2); } */
1033 | '!' condatom { $$ = MKF1(cx, not, $2); }
1039 WORD { $$ = MKF1(cx, atom, $1); }
1204 struct condexpr *cx = wrapstack[i].ptr;
1206 cx->cx_type = CX_ATOM;
1207 cx->cx_atom = NULL;
1208 condexpr_destroy(cx);
1280 struct condexpr *cx;
1282 cx = condexpr_create(CX_ATOM);
1283 cx->cx_atom = s;
1284 return cx;
1290 struct condexpr *cx;
1292 cx = condexpr_create(CX_NOT);
1293 cx->cx_not = sub;
1294 return cx;
1300 struct condexpr *cx;
1302 cx = condexpr_create(CX_AND);
1303 cx->cx_and.left = left;
1304 cx->cx_and.right = right;
1305 return cx;
1311 struct condexpr *cx;
1313 cx = condexpr_create(CX_OR);
1314 cx->cx_or.left = left;
1315 cx->cx_or.right = right;
1316 return cx;