Lines Matching full:no

24 	.curr = { "n", no },
28 .curr = { "", no },
70 else if (modules_val == no) in sym_get_type()
121 if (prop->visible.tri != no) in sym_get_default_prop()
133 if (prop->visible.tri != no) in sym_get_range_prop()
216 tri = no; in sym_calc_visibility()
230 prop->visible.tri = no; in sym_calc_visibility()
234 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no)) in sym_calc_visibility()
242 /* defaulting to "yes" if no explicit "depends on" are given */ in sym_calc_visibility()
252 tri = no; in sym_calc_visibility()
261 tri = no; in sym_calc_visibility()
262 if (sym->implied.expr && sym->dir_dep.tri != no) in sym_calc_visibility()
287 if (prop->visible.tri == no) in sym_choice_default()
290 if (def_sym->visible != no) in sym_choice_default()
297 if (def_sym->visible != no) in sym_choice_default()
316 if (def_sym->visible != no) in sym_calc_choice()
324 if (def_sym && def_sym->visible != no) in sym_calc_choice()
330 /* no choice? reset tristate value */ in sym_calc_choice()
331 sym->curr.tri = no; in sym_calc_choice()
371 sym->curr.tri = no; in sym_calc_value()
387 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no; in sym_calc_value()
389 if (sym->visible != no) { in sym_calc_value()
400 if (sym->rev_dep.tri != no) in sym_calc_value()
409 if (sym->implied.tri != no) { in sym_calc_value()
415 if (sym->dir_dep.tri == no && sym->rev_dep.tri != no) { in sym_calc_value()
436 if (sym->visible != no) { in sym_calc_value()
476 choice_sym->visible != no) in sym_calc_value()
505 if (sym->visible == no) in sym_tristate_within_range()
546 if (e->right.sym->visible != no) in sym_set_tristate_value()
565 case no: in sym_toggle_tristate_value()
572 newval = no; in sym_toggle_tristate_value()
658 return sym_tristate_within_range(sym, no); in sym_string_within_range()
681 return sym_set_tristate_value(sym, no); in sym_set_string_value()
762 if (!sym_is_choice_value(sym) && modules_sym->curr.tri == no) in sym_get_string_default()
777 case no: return "n"; in sym_get_string_default()
802 case no: in sym_get_string_value()
806 return (modules_sym->curr.tri == no) ? "n" : "m"; in sym_get_string_value()
1072 /* sym_match_arr can be NULL if no match, but free(NULL) is OK */ in sym_re_search()
1082 * The entries are located on the call stack so no need to free memory.