Searched refs:child (Results 1 – 7 of 7) sorted by relevance
/scripts/kconfig/ |
D | conf.c | 230 struct menu *child; in conf_choice() local 267 for (child = menu->list; child; child = child->next) { in conf_choice() 268 if (!menu_is_visible(child)) in conf_choice() 270 if (!child->sym) { in conf_choice() 271 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child))); in conf_choice() 275 if (child->sym == def_sym) { in conf_choice() 280 printf(" %d. %s", cnt, _(menu_get_prompt(child))); in conf_choice() 281 if (child->sym->name) in conf_choice() 282 printf(" (%s)", child->sym->name); in conf_choice() 283 if (!sym_has_value(child->sym)) in conf_choice() [all …]
|
D | mconf.c | 420 struct menu *child; in build_conf() local 476 for (child = menu->list; child; child = child->next) { in build_conf() 477 if (menu_is_visible(child) && child->sym == def_sym) in build_conf() 478 def_menu = child; in build_conf() 581 for (child = menu->list; child; child = child->next) in build_conf() 582 build_conf(child); in build_conf() 722 struct menu *child; in conf_choice() local 732 for (child = menu->list; child; child = child->next) { in conf_choice() 733 if (!menu_is_visible(child)) in conf_choice() 735 item_make("%s", _(menu_get_prompt(child))); in conf_choice() [all …]
|
D | kxgettext.c | 167 struct menu *child; in menu_build_message_list() local 178 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list() 179 if (child->prompt != NULL) in menu_build_message_list() 180 menu_build_message_list(child); in menu_build_message_list()
|
D | gconf.c | 1212 struct menu *child; in fill_row() local 1218 for (child = menu->list; child; child = child->next) { in fill_row() 1219 if (menu_is_visible(child) in fill_row() 1220 && child->sym == def_sym) in fill_row() 1221 def_menu = child; in fill_row() 1338 GtkTreeIter *child = &iter; in gtktree_iter_find_node() local 1342 valid = gtk_tree_model_iter_children(model2, child, parent); in gtktree_iter_find_node() 1346 gtk_tree_model_get(model2, child, 6, &menu, -1); in gtktree_iter_find_node() 1349 memcpy(&found, child, sizeof(GtkTreeIter)); in gtktree_iter_find_node() 1353 ret = gtktree_iter_find_node(child, tofind); in gtktree_iter_find_node() [all …]
|
D | qconf.cc | 575 struct menu* child; in updateMenuList() local 590 for (child = menu->list; child; child = child->next) { in updateMenuList() 592 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList() 596 if (!(child->flags & MENU_ROOT)) in updateMenuList() 600 if (child->flags & MENU_ROOT) in updateMenuList() 607 visible = menu_is_visible(child); in updateMenuList() 609 if (!child->sym && !child->list && !child->prompt) in updateMenuList() 611 if (!item || item->menu != child) in updateMenuList() 612 item = new ConfigItem(parent, last, child, visible); in updateMenuList() 617 updateMenuList(item, child); in updateMenuList() [all …]
|
D | menu.c | 392 struct menu *child; in menu_is_visible() local 410 for (child = menu->list; child; child = child->next) in menu_is_visible() 411 if (menu_is_visible(child)) in menu_is_visible()
|
/scripts/tracing/ |
D | draw_functrace.py | 50 child = CallTree(func, calltime, self) 51 self._children.append(child) 52 return child 64 child = CallTree.ROOT.calls(func, None) 65 return child
|