Home | History | Annotate | Download | only in config

Lines Matching defs:condexpr

91 DECL_ALLOCWRAP(condexpr);
136 static struct condexpr *mk_cx_atom(const char *);
137 static struct condexpr *mk_cx_not(struct condexpr *);
138 static struct condexpr *mk_cx_and(struct condexpr *, struct condexpr *);
139 static struct condexpr *mk_cx_or(struct condexpr *, struct condexpr *);
163 struct condexpr *condexpr;
195 %type <condexpr> fopts condexpr condatom
196 %type <condexpr> cond_or_expr cond_and_expr cond_prefix_expr
197 %type <condexpr> cond_base_expr
471 | condexpr { $$ = $1; }
675 condexpr mkvarname PLUSEQ value { appendcondmkoption($1, $2, $4); }
1011 condexpr:
1034 | '(' condexpr ')' { $$ = $2; }
1204 struct condexpr *cx = wrapstack[i].ptr;
1239 DEF_ALLOCWRAP(condexpr);
1277 static struct condexpr *
1280 struct condexpr *cx;
1287 static struct condexpr *
1288 mk_cx_not(struct condexpr *sub)
1290 struct condexpr *cx;
1297 static struct condexpr *
1298 mk_cx_and(struct condexpr *left, struct condexpr *right)
1300 struct condexpr *cx;
1308 static struct condexpr *
1309 mk_cx_or(struct condexpr *left, struct condexpr *right)
1311 struct condexpr *cx;