Lines Matching defs:cond
622 emitopts(FILE *fp, struct condexpr *cond, int include)
625 switch (cond->cx_type) {
627 if (include && selectopt(cond->cx_u.atom, NULL))
628 fprintf(fp, " %s", cond->cx_u.atom);
631 emitopts(fp, cond->cx_u.not, !include);
634 emitopts(fp, cond->cx_u.and.left, include);
635 emitopts(fp, cond->cx_u.and.right, include);
638 emitopts(fp, cond->cx_u.and.left, include);
639 emitopts(fp, cond->cx_u.and.right, include);
653 struct condexpr *cond;
670 cond = nv->nv_ptr;
671 if (expr_eval(cond, selectopt, NULL))
673 condexpr_destroy(cond);