Lines Matching refs:sym
33 struct symbol * const sym; member
200 #define for_all_properties(sym, st, tok) \ argument
201 for (st = sym->prop; st; st = st->next) \
203 #define for_all_defaults(sym, st) for_all_properties(sym, st, P_DEFAULT) argument
204 #define for_all_prompts(sym, st) \ argument
205 for (st = sym->prop; st; st = st->next) \
241 struct symbol *sym; member
297 struct expr *expr_alloc_symbol(struct symbol *sym);
308 bool expr_contains_symbol(struct expr *dep, struct symbol *sym);
309 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
310 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
320 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes()