Lines Matching refs:sym
140 for sym in kconf.unique_defined_syms:
141 if sym.user_value is not None and promptless(sym):
145 symbols. """ + SYM_INFO_HINT.format(sym))
153 for sym in kconf.unique_defined_syms:
154 if sym.choice:
157 user_value = sym.user_value
163 if sym.type in (BOOL, TRISTATE):
166 if user_value != sym.str_value:
171 mdeps = missing_deps(sym)
187 warn(msg + SYM_INFO_HINT.format(sym))
190 def missing_deps(sym): argument
207 deps = split_expr(sym.direct_dep, AND)
209 if sym.type in (BOOL, TRISTATE):
210 return [dep for dep in deps if expr_value(dep) < sym.user_value]
270 def promptless(sym): argument
274 return not any(node.prompt for node in sym.nodes)