Searched refs:visible (Results 1 - 12 of 12) sorted by relevance

/u-boot/scripts/kconfig/
H A Dsymbol.c41 if (sym_is_choice_value(sym) && sym->visible == yes)
84 prop->visible.tri = expr_calc_value(prop->visible.expr);
85 if (prop->visible.tri != no)
96 prop->visible.tri = expr_calc_value(prop->visible.expr);
97 if (prop->visible.tri != no)
179 /* any prompt visible? */
186 prop->visible.tri = expr_calc_value(prop->visible
[all...]
H A Dmenu.c133 prop->visible.expr = dep;
164 prop->visible.expr
165 = expr_alloc_and(prop->visible.expr,
334 parentdep = parent->prompt->visible.expr;
389 dep = rewrite_m(prop->visible.expr);
395 prop->visible.expr = dep;
445 basedep = parent->prompt ? parent->prompt->visible.expr : NULL;
452 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep;
524 prop->visible.expr = expr_alloc_and(expr_copy(basedep),
525 prop->visible
631 tristate visible; local
[all...]
H A Dzconf.y460 | visibility_list visible
464 visible: T_VISIBLE if_expr label
576 case T_VISIBLE: return "visible";
682 if (!expr_is_yes(prop->visible.expr)) {
684 expr_fprint(prop->visible.expr, out);
691 if (!expr_is_yes(prop->visible.expr)) {
693 expr_fprint(prop->visible.expr, out);
762 if (!expr_is_yes(prop->visible.expr)) {
764 expr_fprint(prop->visible.expr, out);
H A Dqconf.h127 : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
132 : Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
137 : Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true)
188 bool visible; member in class:ConfigItem
H A Dqconf.cc209 if (!sym_has_value(sym) && visible)
219 visible = v;
582 bool visible; local
614 visible = menu_is_visible(child);
619 item = new ConfigItem(parent, last, child, visible);
621 item->testUpdateMenu(visible);
647 bool visible; local
679 visible = menu_is_visible(child);
684 item = new ConfigItem(parent, last, child, visible);
686 item->testUpdateMenu(visible);
[all...]
H A Dexpr.h114 tristate visible; member in struct:symbol
196 struct expr_value visible; member in struct:property
244 * 'visible if' dependencies. If more than one is given, they will be
H A Dmconf.c54 " through all visible items which use that hotkey.\n"
254 " this symbol to be visible in the menu (selectable)\n"
473 bool visible; local
479 visible = menu_is_visible(menu);
482 else if (!show_all_options && !visible)
H A Dconfdata.c306 if (expr_calc_value(prop->visible.expr) == no ||
485 * as new, if they should become visible, but that
489 if (sym->visible == no && !conf_unsaved)
/u-boot/include/
H A Dvideo_console.h281 * @visible: true to show the cursor, false to hide it
287 int (*set_cursor_visible)(struct udevice *dev, bool visible,
373 * @visible: true to show the cursor, false to hide it
379 int vidconsole_set_cursor_visible(struct udevice *dev, bool visible,
/u-boot/drivers/video/
H A Dconsole_normal.c102 static int console_set_cursor_visible(struct udevice *dev, bool visible, argument
H A Dvidconsole-uclass.c684 int vidconsole_set_cursor_visible(struct udevice *dev, bool visible, argument
691 ret = ops->set_cursor_visible(dev, visible, x, y, index);
H A Dconsole_truetype.c844 static int truetype_set_cursor_visible(struct udevice *dev, bool visible, argument
860 if (!visible)

Completed in 121 milliseconds