Home
last modified time | relevance | path

Searched refs:title (Results 1 – 16 of 16) sorted by relevance

/scripts/kconfig/lxdialog/
Ddialog.h101 struct dialog_color title; member
206 void print_title(WINDOW *dialog, const char *title, int width);
212 int dialog_yesno(const char *title, const char *prompt, int height, int width);
213 int dialog_msgbox(const char *title, const char *prompt, int height,
219 int dialog_textbox(const char *title, char *tbuf, int initial_height,
222 int dialog_menu(const char *title, const char *prompt,
224 int dialog_checklist(const char *title, const char *prompt, int height,
226 int dialog_inputbox(const char *title, const char *prompt, int height,
Dyesno.c29 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument
58 print_title(dialog, title, width); in dialog_yesno()
Dutil.c23 dlg.title.atr = A_BOLD; in set_mono_theme()
63 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme()
96 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme()
136 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme()
183 init_one_color(&dlg.title); in init_dialog_colors()
352 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
354 if (title) { in print_title()
355 int tlen = MIN(width - 2, strlen(title)); in print_title()
356 wattrset(dialog, dlg.title.atr); in print_title()
358 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
Dinputbox.c31 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument
69 print_title(dialog, title, width); in dialog_inputbox()
Dtextbox.c43 int dialog_textbox(const char *title, char *tbuf, int initial_height, in dialog_textbox() argument
117 print_title(dialog, title, width); in dialog_textbox()
Dchecklist.c104 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
147 print_title(dialog, title, width); in dialog_checklist()
Dmenubox.c171 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument
211 print_title(dialog, title, width); in dialog_menu()
/scripts/kconfig/
Dmconf.c289 static int show_textbox_ext(const char *title, char *text, int r, int c,
292 static void show_textbox(const char *title, const char *text, int r, int c);
293 static void show_helptext(const char *title, const char *text);
395 struct gstr title; in search_conf() local
402 title = str_new(); in search_conf()
403 str_printf( &title, "Enter (sub)string or regexp to search for " in search_conf()
409 str_get(&title), in search_conf()
418 str_free(&title); in search_conf()
461 str_free(&title); in search_conf()
755 static int show_textbox_ext(const char *title, char *text, int r, int c, int in show_textbox_ext() argument
[all …]
Dnconf.h87 const char *title, const char *prompt,
91 const char *title,
Dnconf.gui.c358 const char *title, const char *prompt, in dialog_inputbox() argument
388 if (title) in dialog_inputbox()
389 prompt_width = max(prompt_width, strlen(title)); in dialog_inputbox()
413 if (title) in dialog_inputbox()
414 mvwprintw(win, 0, 3, "%s", title); in dialog_inputbox()
551 const char *title, in show_scroll_win() argument
597 mvwprintw(win, 0, 3, " %s ", title); in show_scroll_win()
Dnconf.c696 struct gstr title; in search_conf() local
700 title = str_new(); in search_conf()
701 str_printf( &title, "Enter (sub)string or regexp to search for " in search_conf()
707 str_get(&title), in search_conf()
717 str_free(&title); in search_conf()
732 str_free(&title); in search_conf()
Dexpr.c1282 void *data, tristate pr_type, const char **title) in expr_print_revdep() argument
1285 expr_print_revdep(e->left.expr, fn, data, pr_type, title); in expr_print_revdep()
1286 expr_print_revdep(e->right.expr, fn, data, pr_type, title); in expr_print_revdep()
1288 if (*title) { in expr_print_revdep()
1289 fn(data, NULL, *title); in expr_print_revdep()
1290 *title = NULL; in expr_print_revdep()
1300 tristate pr_type, const char *title) in expr_gstr_print_revdep() argument
1302 expr_print_revdep(e, expr_print_gstr_helper, gs, pr_type, &title); in expr_gstr_print_revdep()
Dexpr.h316 tristate pr_type, const char *title);
Dqconf.cc1315 char title[256]; in ConfigMainWindow() local
1318 snprintf(title, sizeof(title), "%s%s", in ConfigMainWindow()
1322 setWindowTitle(title); in ConfigMainWindow()
Dgconf.c391 static void text_insert_msg(const char *title, const char *message) in text_insert_msg() argument
403 gtk_text_buffer_insert_with_tags(buffer, &end, title, -1, tag1, in text_insert_msg()
/scripts/
Dcheckpatch.pl3197 my $title = "commit title";
3207 $title = $3;
3216 $title = substr($title, 1, -1);
3217 if ($title =~ /^".*"$/) {
3218 $title = substr($title, 1, -1);
3224 $title);
3226 if ($ctitle ne $title || $tag_case || $tag_space ||