Lines Matching full:symbol
84 void menu_add_entry(struct symbol *sym);
90 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
102 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
105 /* symbol.c */
107 struct symbol *sym_choice_default(struct menu *choice);
108 struct symbol *sym_calc_choice(struct menu *choice);
109 struct property *sym_get_range_prop(struct symbol *sym);
110 const char *sym_get_string_default(struct symbol *sym);
111 struct symbol *sym_check_deps(struct symbol *sym);
112 struct symbol *prop_get_symbol(const struct property *prop);
114 static inline tristate sym_get_tristate_value(const struct symbol *sym) in sym_get_tristate_value()
119 static inline bool sym_is_choice(const struct symbol *sym) in sym_is_choice()
121 /* A choice is a symbol with no name */ in sym_is_choice()
125 bool sym_is_choice_value(const struct symbol *sym);
127 static inline bool sym_has_value(const struct symbol *sym) in sym_has_value()